#include "Joi.h"
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int _N = 1e4+1, _B = 60;
vector<int> g[_N];
bool vis[_N];
int dep[_N], par[_N];
vector<int> roots;
ll X;
void dfs(int x) {
vis[x] = 1;
if(dep[x]%_B==0) {
roots.push_back(x);
}
for(int i: g[x]) {
if(!vis[i]) {
par[i] = x;
dep[i] = dep[x]+1;
dfs(i);
}
}
}
void set_board(int x, int &bit) {
vis[x] = 1;
if((X&(1LL<<bit))>0) {
MessageBoard(x, 1);
}
else {
MessageBoard(x, 0);
}
if(bit>=_B-1) return;
for(int i: g[x]) {
if(!vis[i] && par[i] == x) {
bit++;
if(dep[i]%_B!=0 && bit<_B) set_board(i, bit);
}
}
}
void Joi(int N, int M, int A[], int B[], ll _X, int T) {
// MessageBoard();
X = _X;
for(int i=0; i<M; ++i) {
g[A[i]].push_back(B[i]);
g[B[i]].push_back(A[i]);
}
for(int i=0; i<N; ++i) {
sort(g[i].begin(), g[i].end());
}
dfs(0);
for(int i=0; i<N; ++i) vis[i] = 0;
for(int i: roots) {
int bit = 0;
set_board(i, bit);
}
for(int i=0; i<N; ++i) {
if(!vis[i]) {
MessageBoard(i, 1);
}
}
}
#include "Ioi.h"
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int __N = 1e4+1;
const int bits = 60;
void _dfs(int x, vector<int>& vis, vector<vector<int>>& g, vector<int>& par, vector<int>& dep) {
vis[x] = 1;
for(int i: g[x]) {
if(!vis[i]) {
par[i] = x;
dep[i] = dep[x]+1;
_dfs(i, vis, g, par, dep);
}
}
}
map<int, int> Map[__N];
int cur_pos;
int mv(int x) {
if(!Map[cur_pos][x]) assert(false);
cur_pos = x;
return Move(x);
}
void get_X(int x, int v, int& bit, ll& X, vector<int>& vis, vector<vector<int>>& g, vector<int>& par) {
vis[x] = 1;
X += (ll)v * (1LL<<bit);
if(bit==bits-1) return;
for(int i: g[x]) {
if(!vis[i] && par[i]==x) {
bit++;
if(bit < bits) get_X(i, mv(i), bit, X, vis, g, par);
}
}
if(par[x] != x && bit < bits-1) {
mv(par[x]);
}
}
long long Ioi(int N, int M, int A[], int B[], int P, int V, int T) {
assert(false);
vector<vector<int>> g(N);
vector<int> vis(N), par(N), dep(N);
for(int i=0; i<M; ++i) {
Map[A[i]][B[i]] = 1;
Map[B[i]][A[i]] = 1;
g[A[i]].push_back(B[i]);
g[B[i]].push_back(A[i]);
}
for(int i=0; i<N; ++i) {
sort(g[i].begin(), g[i].end());
}
_dfs(0, vis, g, par, dep);
cur_pos = P;
while(dep[P]%bits != 0) {
P = par[P];
V = mv(P);
}
for(int i=0; i<N; ++i) {
vis[i] = 0;
}
int bit = 0;
ll X = 0;
get_X(P, V, bit, X, vis, g, par);
return X;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
3 ms |
2312 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
34 ms |
5028 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
3 ms |
2184 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
35 ms |
5112 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
30 ms |
5044 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |