Submission #1104709

#TimeUsernameProblemLanguageResultExecution timeMemory
1104709alexander707070Toy Train (IOI17_train)C++14
10 / 100
9 ms27728 KiB
#include<bits/stdc++.h> #define MAXN 1000007 using namespace std; int n; bool is[MAXN],sp[MAXN]; vector<int> v[MAXN],ans; int tim[MAXN]; bool brute(int x,int last,int t){ tim[x]=t; if(sp[x])last=t; for(int i=0;i<v[x].size();i++){ if(is[x]){ if(tim[v[x][i]]!=0 and tim[v[x][i]]<=last){ tim[x]=0; return true; } }else{ if(tim[v[x][i]]!=0 and tim[v[x][i]]>last){ tim[x]=0; return false; } } } for(int i=0;i<v[x].size();i++){ if(tim[v[x][i]]!=0)continue; if(is[x]){ if(brute(v[x][i],last,t+1)){ tim[x]=0; return true; } }else{ if(!brute(v[x][i],last,t+1)){ tim[x]=0; return false; } } } tim[x]=0; return !is[x]; } vector<int> who_wins(vector<int> A,vector<int> R, vector<int> from,vector<int> to){ n=int(A.size()); for(int i=1;i<=n;i++){ is[i]=A[i-1]; sp[i]=R[i-1]; } for(int i=1;i<=from.size();i++){ v[from[i-1]+1].push_back(to[i-1]+1); } if(n<=15){ for(int i=1;i<=n;i++){ for(int f=1;f<=n;f++)tim[f]=0; if(brute(i,0,1))ans.push_back(1); else ans.push_back(0); } } return ans; } /*int main(){ ans=who_wins({0, 1}, {1, 0}, {0, 0, 1, 1}, {0, 1, 0, 1}); for(int i:ans)cout<<i<<" "; return 0; }*/

Compilation message (stderr)

train.cpp: In function 'bool brute(int, int, int)':
train.cpp:14:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |  for(int i=0;i<v[x].size();i++){
      |              ~^~~~~~~~~~~~
train.cpp:26:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |  for(int i=0;i<v[x].size();i++){
      |              ~^~~~~~~~~~~~
train.cpp: In function 'std::vector<int> who_wins(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
train.cpp:52:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   52 |  for(int i=1;i<=from.size();i++){
      |              ~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...