# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
424131 |
2021-06-11T17:06:36 Z |
cfalas |
Toy Train (IOI17_train) |
C++14 |
|
125 ms |
50756 KB |
#include "train.h"
#include<bits/stdc++.h>
using namespace std;
#define mp make_pair
#define INF 10000000
#define MOD 1000000007
#define MID ((l+r)/2)
#define HASHMOD 2305843009213693951
#define ll long long
#define ull unsigned long long
#define F first
#define S second
typedef pair<ll, ll> ii;
typedef pair<ii, int> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef map<int, int> mii;
#define EPS 1e-6
#define FOR(i,n) for(int i=0;i<((int)(n));i++)
#define FORi(i,a,b) for(int i=((int)(a));i<((int)(b));i++)
#define FOA(v, a) for(auto &v : a)
#define len(x) ((int)x.size())
int c=0;
vector<vi> adj;
vector<vi> rev;
vi vis;
vector<int> path;
vii loops;
vector<vi> paths;
void dfs(int s){
path.push_back(s);
vis[s] = c;
paths[s] = path;
for(auto v : adj[s]){
if(!vis[v]) dfs(v);
else if(vis[v]==c){
loops.push_back({s,v});
}
}
path.erase(path.end()-1);
}
vi who_wins(vi a, vi r, vi u, vi v) {
int n = len(a);
adj.assign(n, vi());
rev.assign(n, vi());
paths.resize(n);
vis.assign(n,0);
vi res(n, 0);
FOR(i, len(u)){
adj[u[i]].push_back(v[i]);
rev[v[i]].push_back(u[i]);
}
FOR(i,n){
if(!vis[i]){
c++, dfs(i);
}
}
FOA(loop, loops){
bool start = true;
bool win = false;
vi path;
FOA(v,paths[loop.F]){
if(v==loop.S) start = true;
if(start){
if(r[v]) win = true;
path.push_back(v);
}
}
if(win && !res[loop.F]){
queue<int> q;
FOA(v,path) q.push(v);
vi used(n, 0);
while(!q.empty()){
int t = q.front();
q.pop();
res[t] = 1;
FOA(v,rev[t]){
if(!used[v]){
used[v] = true;
q.push(v);
}
}
}
}
}
return res;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
125 ms |
50756 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
28 ms |
22972 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
61 ms |
22548 KB |
3rd lines differ - on the 696th token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
105 ms |
26660 KB |
3rd lines differ - on the 2nd token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
125 ms |
50756 KB |
3rd lines differ - on the 1st token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |