for (int i = 2; i < N; i++) { if (!mint[i]) mint[i] = i, prime.push_back(i); for (auto& p : prime) { if (1ll * i * p >= N) break; mint[i * p] = p; if (p == mint[i]) break; } } int J; cin >> J; while (J--) { int n; cin >> n;
set<int> s; for (int i = 1; i <= n; i++) { s.insert(i); }
vector<int> res; ll sum = 0; for (int i = 1; i <= n; i++) { int x = *s.begin(); int now = (sum + x - 1) / i + 1; while (!is_prime(now)) { now++; } int need = i * (now - 1) + 1 - sum; auto it = s.lower_bound(need); if (it == s.end()) { it--; } int x = *it; sum += x; s.erase(x); res.push_back(x); }
for (int i = 0; i < n; i++) { cout << res[i] << ' '; } cout << endl; // sum = 0; // for (int i = 0; i < n; i++) { // sum += res[i]; // cout << (sum - 1) / (i + 1) + 1 << ' '; // } // cout << endl; } return0; }
signedmain(){ ios::sync_with_stdio(false); cin.tie(nullptr), cout.tie(nullptr); int J; cin >> J; while (J--) { int n, k; cin >> n >> k;
vector<int> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; }
vector<int> b(n); for (int i = 0; i < n; i++) { cin >> b[i]; }
for (int i = 0; i < n; i++) { A[i] = 1; B[i] = 1; }
int cnt = 0;
for (int d = 0; d < n; d++) { auto C = A & B; for (int i = C._Find_first(); i != N; i = C._Find_next(i)) { int& x = a[(i - d + n) % n]; int& y = b[i]; if (x > y) { x -= y; y = 0; B[i] = 0; } else { y -= x; x = 0; A[i] = 0; cnt++; } } if (cnt == n) { cout << d + 1 << endl; break; } A <<= 1; A[0] = A[n]; A[n] = 0; } } return0; }