QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#539867 | #8934. Challenge NPC | ucup-team022# | WA | 26ms | 7944kb | C++17 | 1.1kb | 2024-08-31 15:53:02 | 2024-08-31 15:53:03 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> pr;
const int n = 252;
vector<pr> e;
vector<int> g[10005];
int a[10005];
int main() {
for (int i = 1; i <= n; i++) {
for (int j = 1; j < i; j++) {
e.push_back(pr(i, j));
e.push_back(pr(i + n, j));
e.push_back(pr(i + n + n, j + n + n));
e.push_back(pr(i + n + n + n, j + n + n + n));
}
for (int j = 1; j <= n; j++) {
e.push_back(pr(i + n + n, j + n));
e.push_back(pr(i + n + n + n, j + n + n));
e.push_back(pr(i + n + n + n, j + n));
}
}
cout << 4 * n << ' ' << e.size() << ' ' << n + 1 << '\n';
for (int i = 1; i <= n; i++) cout << i << ' ';
for (int i = 1; i <= n; i++) cout << n + 1 << ' ';
for (int i = 1; i <= n; i++) cout << i << ' ';
for (int i = 1; i <= n; i++) cout << i << ' ';
cout << '\n';
for (auto [x, y] : e) cout << x << ' ' << y << '\n', g[max(x, y)].push_back(min(x, y));
/*for (int i = 1; i <= 4 * n; i++) {
a[i] = 1;
map<int, int> b;
for (int j : g[i]) b[a[j]] = 1;
while (b[a[i]]) a[i]++;
cerr << i << ' ' << a[i] << '\n';
}*/
}
详细
Test #1:
score: 0
Wrong Answer
time: 26ms
memory: 7944kb
input:
1
output:
1008 317016 253 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98...
result:
wrong answer The graph is not correct