Submission #747018

#TimeUsernameProblemLanguageResultExecution timeMemory
747018danikoynovToy Train (IOI17_train)C++14
5 / 100
9 ms764 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 5010; int n, m, a[maxn], r[maxn], cycle[maxn], nxt[maxn]; vector<int> who_wins(vector<int> A, vector<int> R, vector<int> U, vector<int> V) { n = A.size(); m = U.size(); for (int i = 0; i < n; i ++) a[i] = A[i]; for (int i = 0; i < n; i ++) r[i] = R[i]; for (int i = 0; i < m; i ++) { if (U[i] == V[i]) { cycle[U[i]] = 1; ///cout << "HERE" << endl; } else { nxt[U[i]] = 1; } } vector < int > res(n, 0); for (int i = 0; i < n; i ++) { int j = i; while(true) { ///cout << i << " : " << j << endl; if (cycle[j]) { //cout << "here" << endl; if (a[j] == 1) { if (r[j]) { res[i] = 1; break; } } else { if (!r[j]) { res[i] = 0; break; } } } if (nxt[j]) { j ++; } else { if (a[j] == 0) res[i] = 1; break; } } } return res; }
#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...