#include <bits/stdc++.h>
#include "train.h"
using namespace std;
#define ll long long
//#define int ll
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
vector<int> charge,pers;
vector<int> p[6000];
vector<int> tempo(5010,0);
int temp=1;
int dfs(int pos,int last_charge){//return 0 if cycle without charger
if(tempo[pos]>0){
if(tempo[pos]>last_charge)return 0;
return 1;
}
tempo[pos]=temp;
if(charge[pos])last_charge=temp;
temp++;
if(pers[pos]==0){
int sol=1;
for(int x:p[pos]){
temp=tempo[pos]+1;
sol=min(sol,dfs(x,last_charge));
if(sol==0)break;
}
tempo[pos]=0;
return sol;
}else{
int sol=0;
for(int x:p[pos]){
temp=tempo[pos]+1;
sol=max(sol,dfs(x,last_charge));
if(sol)break;
}
tempo[pos]=0;
return sol;
}
}
std::vector<int> who_wins(std::vector<int> a, std::vector<int> r, std::vector<int> u, std::vector<int> v){
pers=a;charge=r;
vector<int> ans(a.size(),0);
for(int i=0;i<u.size();i++)p[u[i]].push_back(v[i]);
for(int i=0;i<a.size();i++){
temp=1;
fill(tempo.begin(),tempo.end(),0);
ans[i]=dfs(i,-2);
}
return ans;
}
Compilation message
train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:42:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for(int i=0;i<u.size();i++)p[u[i]].push_back(v[i]);
| ~^~~~~~~~~
train.cpp:43:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | for(int i=0;i<a.size();i++){
| ~^~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
896 KB |
Output is correct |
2 |
Correct |
18 ms |
896 KB |
Output is correct |
3 |
Correct |
18 ms |
896 KB |
Output is correct |
4 |
Correct |
17 ms |
896 KB |
Output is correct |
5 |
Correct |
18 ms |
896 KB |
Output is correct |
6 |
Correct |
18 ms |
896 KB |
Output is correct |
7 |
Correct |
17 ms |
896 KB |
Output is correct |
8 |
Correct |
17 ms |
896 KB |
Output is correct |
9 |
Correct |
17 ms |
896 KB |
Output is correct |
10 |
Correct |
16 ms |
896 KB |
Output is correct |
11 |
Correct |
16 ms |
896 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
512 KB |
Output is correct |
2 |
Correct |
1 ms |
512 KB |
Output is correct |
3 |
Correct |
1 ms |
512 KB |
Output is correct |
4 |
Correct |
1 ms |
512 KB |
Output is correct |
5 |
Correct |
1 ms |
512 KB |
Output is correct |
6 |
Correct |
1 ms |
512 KB |
Output is correct |
7 |
Correct |
1 ms |
512 KB |
Output is correct |
8 |
Correct |
1 ms |
512 KB |
Output is correct |
9 |
Correct |
1 ms |
512 KB |
Output is correct |
10 |
Correct |
1 ms |
512 KB |
Output is correct |
11 |
Correct |
1 ms |
512 KB |
Output is correct |
12 |
Correct |
1 ms |
512 KB |
Output is correct |
13 |
Correct |
1 ms |
512 KB |
Output is correct |
14 |
Correct |
1 ms |
512 KB |
Output is correct |
15 |
Correct |
1 ms |
512 KB |
Output is correct |
16 |
Correct |
1 ms |
512 KB |
Output is correct |
17 |
Correct |
1 ms |
512 KB |
Output is correct |
18 |
Correct |
1 ms |
512 KB |
Output is correct |
19 |
Correct |
1 ms |
512 KB |
Output is correct |
20 |
Correct |
1 ms |
512 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2098 ms |
1152 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2060 ms |
1152 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2078 ms |
1272 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
896 KB |
Output is correct |
2 |
Correct |
18 ms |
896 KB |
Output is correct |
3 |
Correct |
18 ms |
896 KB |
Output is correct |
4 |
Correct |
17 ms |
896 KB |
Output is correct |
5 |
Correct |
18 ms |
896 KB |
Output is correct |
6 |
Correct |
18 ms |
896 KB |
Output is correct |
7 |
Correct |
17 ms |
896 KB |
Output is correct |
8 |
Correct |
17 ms |
896 KB |
Output is correct |
9 |
Correct |
17 ms |
896 KB |
Output is correct |
10 |
Correct |
16 ms |
896 KB |
Output is correct |
11 |
Correct |
16 ms |
896 KB |
Output is correct |
12 |
Correct |
1 ms |
512 KB |
Output is correct |
13 |
Correct |
1 ms |
512 KB |
Output is correct |
14 |
Correct |
1 ms |
512 KB |
Output is correct |
15 |
Correct |
1 ms |
512 KB |
Output is correct |
16 |
Correct |
1 ms |
512 KB |
Output is correct |
17 |
Correct |
1 ms |
512 KB |
Output is correct |
18 |
Correct |
1 ms |
512 KB |
Output is correct |
19 |
Correct |
1 ms |
512 KB |
Output is correct |
20 |
Correct |
1 ms |
512 KB |
Output is correct |
21 |
Correct |
1 ms |
512 KB |
Output is correct |
22 |
Correct |
1 ms |
512 KB |
Output is correct |
23 |
Correct |
1 ms |
512 KB |
Output is correct |
24 |
Correct |
1 ms |
512 KB |
Output is correct |
25 |
Correct |
1 ms |
512 KB |
Output is correct |
26 |
Correct |
1 ms |
512 KB |
Output is correct |
27 |
Correct |
1 ms |
512 KB |
Output is correct |
28 |
Correct |
1 ms |
512 KB |
Output is correct |
29 |
Correct |
1 ms |
512 KB |
Output is correct |
30 |
Correct |
1 ms |
512 KB |
Output is correct |
31 |
Correct |
1 ms |
512 KB |
Output is correct |
32 |
Execution timed out |
2098 ms |
1152 KB |
Time limit exceeded |
33 |
Halted |
0 ms |
0 KB |
- |