#include <iostream> #include <algorithm> #include <cmath> #include <vector> using namespace std; const int maxn = 1e3 + 5; const int INF = 0x3f3f3f3f; vector <int> e[maxn]; int m, n, x,sum,minS; bool vis[maxn], flag; bool fun(int k) {// 是否为素数  ...