# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
775892 |
2023-07-07T06:11:28 Z |
Jomnoi |
Toy Train (IOI17_train) |
C++17 |
|
423 ms |
1308 KB |
#include <bits/stdc++.h>
#include "train.h"
using namespace std;
const int MAX_N = 5005;
const int MAX_M = 20005;
int N, M;
vector <int> graph[MAX_N];
int A[MAX_N], R[MAX_N];
bool visited[MAX_N];
bool self[MAX_N], nxt[MAX_N];
bool dfs(int u, int x, bool found, bool init = false) {
// cout << x << " : " << u << ' ' << found << endl;
if (u == x and init == true) return found;
if (visited[u] == true) return false;
init = true;
visited[u] = true;
if (R[u] == 1) found = true;
for (auto v : graph[u]) if (dfs(v, x, found, true) == true) return true;
return false;
}
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], R[i] = r[i];
bool sub1 = true;
for (int i = 0; i < M; i++) {
if (u[i] != v[i] and u[i] != v[i] - 1) sub1 = false;
if (u[i] == v[i]) self[u[i]] = true;
else if (u[i] + 1 == v[i]) nxt[u[i]] = true;
graph[u[i]].push_back(v[i]);
}
vector <int> ans(N, 0);
if (sub1 == true) {
bool ok = false;
for (int i = N - 1; i >= 0; i--) {
if (self[i] == true) {
if (R[i] == 1 and A[i] == 1) ok = true;
else if (R[i] == 0 and A[i] == 0) ok = false;
}
ans[i] = ok;
if (i > 0 and nxt[i - 1] == false) ok = R[i - 1];
}
}
else {
for (int s = 0; s < N; s++) {
for (int i = 0; i < N; i++) visited[i] = false;
ans[s] = dfs(s, s, false);
}
}
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 |
0 ms |
340 KB |
3rd lines differ - on the 8th token, expected: '0', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
118 ms |
1308 KB |
Output is correct |
2 |
Correct |
118 ms |
1292 KB |
Output is correct |
3 |
Correct |
115 ms |
1236 KB |
Output is correct |
4 |
Incorrect |
311 ms |
1216 KB |
3rd lines differ - on the 13th token, expected: '1', found: '0' |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
297 ms |
1052 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 |
423 ms |
1184 KB |
3rd lines differ - on the 6th token, expected: '0', found: '1' |
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 |
- |