# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
283324 | davi_bart | Toy Train (IOI17_train) | C++14 | 2090 ms | 1216 KiB |
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 <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;
if(charge[x]==0)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 (stderr)
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |