#include <bits/stdc++.h>
#include "train.h"
using namespace std;
vector<int>tim;
vector<int>s,a,r;
vector<int>adj[15];
int t = 1;
bool dfs(int u) {
if(tim[u]) {
if(s.back() >= tim[u])
return 1;
return 0;
}
tim[u] = t++;
if(r[u])
s.push_back(t-1);
bool ok;
if(a[u]) {
ok = 0;
for(auto z : adj[u]) {
ok |= dfs(z);
}
} else {
ok = 1;
for(auto z : adj[u]) {
ok &= dfs(z);
}
}
if(r[u])
s.pop_back();
tim[u] = 0;
return ok;
}
vector<int>who_wins(vector<int>A, vector<int>R, vector<int>u, vector<int>v) {
r = R;
a = A;
int n = r.size();
int m = u.size();
for(int i = 0 ; i < m ; i++) {
t = 1;
tim.clear();
tim.resize(n,0);
adj[u[i]].push_back(v[i]);
}
vector<int>ans(n);
for(int i = 0 ; i < n ; i++) {
ans[i] = dfs(i);
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
3 ms |
852 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
296 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Runtime error |
1 ms |
340 KB |
Execution killed with signal 11 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
5 ms |
1236 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
5 ms |
1092 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
7 ms |
1236 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
3 ms |
852 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |