#include <bits/stdc++.h>
using namespace std;
#define sz(v) int(v.size())
#define ar array
typedef long long ll;
const int N = 1e2, MOD = 1e9+7;
const int K = 19;
int g[N][N], allow[1 << K];
bool can_odd[1 << K];
bool can_ev[1 << K];
void pre() {
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
g[i][j] = gcd(i, j);
can_odd[0] = 1;
for (int mask = 1; mask < (1 << K); mask++) {
int k = 31 - __builtin_clz(mask);
if (!can_odd[mask ^ (1 << k)]) continue;
can_odd[mask] = 1;
for (int j = 0; j < k; j++) if ((mask >> j) & 1) {
int x = g[2 * k + 1][2 * j + 1];
assert(x % 2 == 1); x /= 2;
if ((mask >> x) & 1 ^ 1) {
can_odd[mask] = 0;
break;
}
}
}
can_ev[0] = 1;
for (int mask = 1; mask < (1 << K); mask++) {
int k = 31 - __builtin_clz(mask);
if (!can_ev[mask ^ (1 << k)]) continue;
can_ev[mask] = 1;
for (int j = 0; j < k; j++) if ((mask >> j) & 1) {
int x = g[2 * k + 2][2 * j + 2];
assert(x % 2 == 0); x /= 2; x--;
if ((mask >> x) & 1 ^ 1) {
can_ev[mask] = 0;
break;
}
}
}
for (int mask = 0; mask < (1 << K); mask++) if (can_odd[mask]) {
int me = 0;
for (int i = 0; i < K; i++) {
if ((mask >> i) & 1) {
me |= 1 << i;
continue;
}
bool bad = 0;
for (int j = 0; j < K; j++) if ((mask >> j) & 1) {
int x = g[2 * i + 1][2 * j + 1];
assert(x % 2 == 1); x /= 2;
if ((mask >> x) & 1 ^ 1) {
bad = 1;
break;
}
}
if (!bad) me |= 1 << i;
}
allow[mask] = me;
}
}
int sum[1 << K];
void solve() {
ll n; cin >> n;
int ev_mask = 0, odd_mask = 0;
int cnt_odd = 0, cnt_ev = 0;
for (int use = 2 * K; use >= 1; use--) {
memset(sum, 0, sizeof(sum));
if (use % 2) cnt_odd++;
else cnt_ev++;
for (int i = 0; i < (1 << K); i++) {
if (!can_odd[i]) continue;
if ((odd_mask >> (K - cnt_odd)) != (i >> (K - cnt_odd))) continue;
sum[allow[i]]++;
}
for (int i = 0; i < K; i++) {
for (int j = 0; j < (1 << K); j++) if ((j >> i) & 1 ^ 1) {
sum[j] += sum[j ^ (1 << i)];
}
}
ll cnt_can = 0;
for (int mask = 0; mask < (1 << K); mask++) {
if (!can_ev[mask]) continue;
if ((ev_mask >> (K - cnt_ev)) != (mask >> (K - cnt_ev))) continue;
int cur = 0;
for (int i = 0; i < K; i++) if ((mask >> i) & 1) {
int me = 2 * i + 2; me >>= __builtin_ctz(me);
assert(me % 2 == 1); me /= 2;
cur |= 1 << me;
}
cnt_can += sum[cur];
}
if (cnt_can > n) { // can skip
} else {
if (use % 2) odd_mask |= 1 << (use / 2);
else ev_mask |= 1 << (use / 2 - 1);
n -= cnt_can;
}
}
vector<int> ans;
for (int i = 0; i < K; i++) if ((ev_mask >> i) & 1)
ans.push_back(2 * i + 2);
for (int i = 0; i < K; i++) if ((odd_mask >> i) & 1)
ans.push_back(2 * i + 1);
sort(ans.begin(), ans.end());
cout << sz(ans);
for (int x : ans) cout << ' ' << x;
cout << '\n';
}
int main() {
ios::sync_with_stdio(false); cin.tie(0);
pre();
int T = 1;
cin >> T;
while (T--) solve();
}
Compilation message
Main.cpp: In function 'void pre()':
Main.cpp:28:29: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
28 | if ((mask >> x) & 1 ^ 1) {
| ~~~~~~~~~~~~^~~
Main.cpp:44:29: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
44 | if ((mask >> x) & 1 ^ 1) {
| ~~~~~~~~~~~~^~~
Main.cpp:64:33: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
64 | if ((mask >> x) & 1 ^ 1) {
| ~~~~~~~~~~~~^~~
Main.cpp: In function 'void solve()':
Main.cpp:96:61: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
96 | for (int j = 0; j < (1 << K); j++) if ((j >> i) & 1 ^ 1) {
| ~~~~~~~~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1676 ms |
5472 KB |
Output is correct |
2 |
Correct |
1667 ms |
5472 KB |
Output is correct |
3 |
Correct |
1674 ms |
5472 KB |
Output is correct |
4 |
Correct |
1677 ms |
5472 KB |
Output is correct |
5 |
Correct |
1685 ms |
5476 KB |
Output is correct |
6 |
Correct |
1674 ms |
5476 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1676 ms |
5472 KB |
Output is correct |
2 |
Correct |
1667 ms |
5472 KB |
Output is correct |
3 |
Correct |
1674 ms |
5472 KB |
Output is correct |
4 |
Correct |
1677 ms |
5472 KB |
Output is correct |
5 |
Correct |
1685 ms |
5476 KB |
Output is correct |
6 |
Correct |
1674 ms |
5476 KB |
Output is correct |
7 |
Correct |
1669 ms |
5580 KB |
Output is correct |
8 |
Correct |
1667 ms |
5468 KB |
Output is correct |
9 |
Correct |
1681 ms |
5472 KB |
Output is correct |
10 |
Correct |
1720 ms |
5472 KB |
Output is correct |
11 |
Correct |
1699 ms |
5476 KB |
Output is correct |
12 |
Correct |
1721 ms |
5472 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1676 ms |
5472 KB |
Output is correct |
2 |
Correct |
1667 ms |
5472 KB |
Output is correct |
3 |
Correct |
1674 ms |
5472 KB |
Output is correct |
4 |
Correct |
1677 ms |
5472 KB |
Output is correct |
5 |
Correct |
1685 ms |
5476 KB |
Output is correct |
6 |
Correct |
1674 ms |
5476 KB |
Output is correct |
7 |
Correct |
1669 ms |
5580 KB |
Output is correct |
8 |
Correct |
1667 ms |
5468 KB |
Output is correct |
9 |
Correct |
1681 ms |
5472 KB |
Output is correct |
10 |
Correct |
1720 ms |
5472 KB |
Output is correct |
11 |
Correct |
1699 ms |
5476 KB |
Output is correct |
12 |
Correct |
1721 ms |
5472 KB |
Output is correct |
13 |
Correct |
1672 ms |
5480 KB |
Output is correct |
14 |
Correct |
1671 ms |
5472 KB |
Output is correct |
15 |
Correct |
1673 ms |
5472 KB |
Output is correct |
16 |
Correct |
1673 ms |
5468 KB |
Output is correct |
17 |
Correct |
1680 ms |
5476 KB |
Output is correct |
18 |
Correct |
1663 ms |
5476 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1676 ms |
5472 KB |
Output is correct |
2 |
Correct |
1667 ms |
5472 KB |
Output is correct |
3 |
Correct |
1674 ms |
5472 KB |
Output is correct |
4 |
Correct |
1677 ms |
5472 KB |
Output is correct |
5 |
Correct |
1685 ms |
5476 KB |
Output is correct |
6 |
Correct |
1674 ms |
5476 KB |
Output is correct |
7 |
Correct |
1669 ms |
5580 KB |
Output is correct |
8 |
Correct |
1667 ms |
5468 KB |
Output is correct |
9 |
Correct |
1681 ms |
5472 KB |
Output is correct |
10 |
Correct |
1720 ms |
5472 KB |
Output is correct |
11 |
Correct |
1699 ms |
5476 KB |
Output is correct |
12 |
Correct |
1721 ms |
5472 KB |
Output is correct |
13 |
Correct |
1672 ms |
5480 KB |
Output is correct |
14 |
Correct |
1671 ms |
5472 KB |
Output is correct |
15 |
Correct |
1673 ms |
5472 KB |
Output is correct |
16 |
Correct |
1673 ms |
5468 KB |
Output is correct |
17 |
Correct |
1680 ms |
5476 KB |
Output is correct |
18 |
Correct |
1663 ms |
5476 KB |
Output is correct |
19 |
Correct |
1670 ms |
5472 KB |
Output is correct |
20 |
Correct |
1671 ms |
5476 KB |
Output is correct |
21 |
Correct |
1659 ms |
5468 KB |
Output is correct |
22 |
Correct |
1677 ms |
5468 KB |
Output is correct |
23 |
Correct |
1686 ms |
5540 KB |
Output is correct |
24 |
Correct |
1688 ms |
5472 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1676 ms |
5472 KB |
Output is correct |
2 |
Correct |
1667 ms |
5472 KB |
Output is correct |
3 |
Correct |
1674 ms |
5472 KB |
Output is correct |
4 |
Correct |
1677 ms |
5472 KB |
Output is correct |
5 |
Correct |
1685 ms |
5476 KB |
Output is correct |
6 |
Correct |
1674 ms |
5476 KB |
Output is correct |
7 |
Correct |
1669 ms |
5580 KB |
Output is correct |
8 |
Correct |
1667 ms |
5468 KB |
Output is correct |
9 |
Correct |
1681 ms |
5472 KB |
Output is correct |
10 |
Correct |
1720 ms |
5472 KB |
Output is correct |
11 |
Correct |
1699 ms |
5476 KB |
Output is correct |
12 |
Correct |
1721 ms |
5472 KB |
Output is correct |
13 |
Correct |
1672 ms |
5480 KB |
Output is correct |
14 |
Correct |
1671 ms |
5472 KB |
Output is correct |
15 |
Correct |
1673 ms |
5472 KB |
Output is correct |
16 |
Correct |
1673 ms |
5468 KB |
Output is correct |
17 |
Correct |
1680 ms |
5476 KB |
Output is correct |
18 |
Correct |
1663 ms |
5476 KB |
Output is correct |
19 |
Correct |
1670 ms |
5472 KB |
Output is correct |
20 |
Correct |
1671 ms |
5476 KB |
Output is correct |
21 |
Correct |
1659 ms |
5468 KB |
Output is correct |
22 |
Correct |
1677 ms |
5468 KB |
Output is correct |
23 |
Correct |
1686 ms |
5540 KB |
Output is correct |
24 |
Correct |
1688 ms |
5472 KB |
Output is correct |
25 |
Correct |
1688 ms |
5472 KB |
Output is correct |
26 |
Correct |
1734 ms |
5476 KB |
Output is correct |
27 |
Correct |
1723 ms |
5468 KB |
Output is correct |
28 |
Correct |
1682 ms |
5472 KB |
Output is correct |
29 |
Correct |
1731 ms |
5472 KB |
Output is correct |
30 |
Correct |
1762 ms |
5472 KB |
Output is correct |