This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
#define fi first
#define se second
#define mp make_pair
const int N = (int)3e5 + 10;
vector<int> T[N];
vector<int> R[N];
pii G[N];
pii layer[N];
void init(int n, int k) {
for(int i = 1 ; i <= n; i ++ ){
if(i <= k){
G[i] = mp(i, i);
}
else{
G[i] = mp(0, k + 1);
}
layer[i] = mp(0, k + 1);
}
}
int explore(int u, int v){
if(G[u].fi >= G[v].se){
return 1;
}
if(G[u].fi > G[v].fi){
G[v].fi = G[u].fi;
for(auto x : T[v]){
if(explore(v, x)) return 1;
}
for(auto x : R[v]){
if(explore(x, v)) return 1;
}
}
if(G[v].se < G[u].se){
G[u].se = G[v].se;
for(auto x : T[u]){
if(explore(u, x)) return 1;
}
for(auto x : R[u]){
if(explore(x, u)) return 1;
}
}
return 0;
}
int add_teleporter(int u, int v) {
u ++ ;
v ++ ;
T[u].push_back(v);
R[v].push_back(u);
return explore(u, v);
}
# | 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... |