# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
718429 |
2023-04-04T04:56:25 Z |
vjudge1 |
Game (APIO22_game) |
C++17 |
|
0 ms |
208 KB |
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 3e4 + 5;
int n, k;
bitset <N> bs[N];
void init(int N, int K){
n = N; k = K;
for(int i = 0; i < k - 1; ++i){
bs[i].set(i + 1);
}
}
int add_teleporter(int u, int v){
bs[u] |= bs[v];
if (u < k && (bs[u][u] == 1 && u == v)){
return 1;
} else return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer[1] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer[1] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer[1] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer[1] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
208 KB |
Wrong Answer[1] |
2 |
Halted |
0 ms |
0 KB |
- |