# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
543337 | eecs | Present (RMI21_present) | C++17 | 2325 ms | 4344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int T, K, lim[1 << 19], mark[38], cnt[1 << 18];
bool ok1[1 << 19], ok2[1 << 18];
int main() {
// odd
for (int i = 0; i < 1 << 19; i++) {
ok1[i] = 1, lim[i] = (1 << 18) - 1;
for (int j = 0; j < 19 && ok1[i]; j++) if (i >> j & 1) {
for (int k = j + 1; k < 19; k++) if (i >> k & 1) {
ok1[i] &= i >> (__gcd(2 * j + 1, 2 * k + 1) / 2) & 1;
}
for (int k = 0; k < 18; k++) {
if (!(i >> (__gcd(2 * j + 1, 2 * k + 2) / 2) & 1)) lim[i] &= ~(1 << k);
}
}
}
// even
for (int i = 0; i < 1 << 18; i++) {
ok2[i] = 1;
for (int j = 0; j < 18 && ok2[i]; j++) if (i >> j & 1) {
for (int k = j + 1; k < 18; k++) if (i >> k & 1) {
ok2[i] &= i >> (__gcd(2 * j + 2, 2 * k + 2) / 2 - 1) & 1;
}
}
}
auto calc = [&]() {
memset(cnt, 0, sizeof(cnt));
for (int i = 0; i < 1 << 18; i++) if (ok2[i]) {
bool flag = 1;
for (int j = 0; j < 18; j++) {
if (~mark[2 * j + 2] && mark[2 * j + 2] ^ (i >> j & 1)) flag = 0;
}
if (flag) cnt[i]++;
}
for (int i = 0; i < 18; i++) {
for (int j = 0; j < 1 << 18; j++) {
if (j >> i & 1) cnt[j] += cnt[j ^ (1 << i)];
}
}
long long s = 0;
for (int i = 0; i < 1 << 19; i++) if (ok1[i]) {
bool flag = 1;
for (int j = 0; j < 19; j++) {
if (~mark[2 * j + 1] && mark[2 * j + 1] ^ (i >> j & 1)) flag = 0;
}
if (flag) s += cnt[lim[i]];
}
return s;
};
scanf("%d", &T);
while (T--) {
scanf("%d", &K), K++;
memset(mark, -1, sizeof(mark));
vector<int> res;
for (int i = 37; i; i--) {
mark[i] = 0;
long long t = calc();
if (t < K) mark[i] = 1, K -= t, res.push_back(i);
}
printf("%d", res.size());
reverse(res.begin(), res.end());
for (int x : res) printf(" %d", x);
putchar('\n');
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |