#include <bits/stdc++.h>
#include "Joi.h"
using namespace std;
static const int MAXN2 = (int)2e5+228;
static int val2[MAXN2], used2[MAXN2];
static vector < int > g2[MAXN2];
static long long tmp, XX;
void dfs2(int v, int len = 0) {
used2[v] = 1;
if(len < 60) {
val2[v] = (bool)((1ll << len*1ll) & XX);
MessageBoard(v, val2[v]);
} else {
val2[v] = 0;
MessageBoard(v, val2[v]);
}
for(auto &to : g2[v]) {
if(!used2[to]) dfs2(to, len+1);
}
}
void Joi(int n, int m, int A[], int B[], long long X, int T) {
for(int i = 0; i < n; i++){
val2[i] = -1; used2[i] = 0;
g2[i].clear();
}
for(int i = 0; i < m; ++i) {
g2[A[i]].push_back(B[i]);
g2[B[i]].push_back(A[i]);
}
XX = X;
dfs2(0);
}
#include "Ioi.h"
#include <bits/stdc++.h>
using namespace std;
static const int MAXN1 = (int)2e5+228;
static bool used1[MAXN1];
static vector < int > g1[MAXN1];
static int val1[MAXN1];
static long long ret = 0ll;
void dfs1(int v) {
for(auto &to : g1[v]) {
if(val1[to] == -1) {
val1[to] = Move(to);
dfs1(to);
Move(v);
}
}
}
void dfs11(int v, int len = 0) {
used1[v] = 1;
if(len < 60) ret ^= (1ll << len*1ll) * val1[v];
for(auto &to : g1[v]) {
if(!used1[to]) {
dfs11(to, len+1);
}
}
}
long long Ioi(int n, int m, int A[], int B[], int P, int V, int T) {
for(int i = 0; i < n; ++i) {
used1[i] = 0;
val1[i] = -1;
g1[i].clear();
}
val1[P] = V;
for(int i = 0; i < m; ++i) {
g1[A[i]].push_back(B[i]);
g1[B[i]].push_back(A[i]);
}
ret = 0ll;
dfs1(P);
for(int i = 0; i < n; ++i) used1[i] = 0;
dfs11(0);
return ret;
}
Compilation message
Joi.cpp:7:18: warning: 'tmp' defined but not used [-Wunused-variable]
static long long tmp, XX;
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
10 ms |
10076 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
44 ms |
13116 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
13128 KB |
Output is correct |
2 |
Correct |
11 ms |
13128 KB |
Output is correct |
3 |
Correct |
11 ms |
13128 KB |
Output is correct |
4 |
Incorrect |
14 ms |
13128 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
44 ms |
13420 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
43 ms |
13616 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |