#include <iostream> #include <vector> using namespace std; bool isprime(int i) { for (int j=2; j*j<=i; j++) { if(i%j==0) return false; } return true; } // vector<int> match(even.size(),-1); // vector<bool> visit(even.size(), false); // n是需要匹配的奇数 bool find(const int &n,...