# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
584074 |
2022-06-26T18:51:28 Z |
yanndev |
Toy Train (IOI17_train) |
C++17 |
|
6 ms |
1040 KB |
#include <bits/stdc++.h>
using namespace std;
const int MX = 5042;
vector<int> graph[MX];
vector<int> who_wins(vector<int> a, vector<int> r, vector<int> u, vector<int> v) {
int n, m;
n = (int)a.size();
m = (int)u.size();
for (int i = 0; i < n; i++)
graph[i].clear();
vector<int> ans (n);
bool isChain = true;
for (int i = 0; i < m; i++) {
graph[u[i]].push_back(v[i]);
if (!(u[i] == v[i] || v[i] == u[i] + 1))
isChain = false;
}
if (isChain) {
bool isOk = false;
for (int i = n - 1; i >= 0; i--) {
bool hasSelf = false;
for (auto& x: graph[i])
if (x == i)
hasSelf = true;
if (hasSelf) {
if (a[i]) {
if (r[i])
isOk = true;
} else {
if (!r[i])
isOk = false;
}
}
ans[i] = isOk;
}
return ans;
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
724 KB |
Output is correct |
2 |
Incorrect |
3 ms |
724 KB |
3rd lines differ - on the 4997th token, expected: '1', found: '0' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
3rd lines differ - on the 2nd token, expected: '1', found: '0' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
980 KB |
Output is correct |
2 |
Correct |
6 ms |
1040 KB |
Output is correct |
3 |
Correct |
6 ms |
992 KB |
Output is correct |
4 |
Incorrect |
6 ms |
968 KB |
3rd lines differ - on the 1st token, expected: '1', found: '0' |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
852 KB |
3rd lines differ - on the 1st token, expected: '1', found: '0' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
980 KB |
3rd lines differ - on the 1st token, expected: '1', found: '0' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
724 KB |
Output is correct |
2 |
Incorrect |
3 ms |
724 KB |
3rd lines differ - on the 4997th token, expected: '1', found: '0' |
3 |
Halted |
0 ms |
0 KB |
- |