# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
584088 | 2022-06-26T19:13:16 Z | yanndev | 장난감 기차 (IOI17_train) | C++17 | 9 ms | 980 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 < MX; i++) graph[i].clear(); vector<int> ans (n); bool isChain = true; for (int i = 0; i < (int)u.size(); i++) { graph[u[i]].push_back(v[i]); if (!(u[i] == v[i] || v[i] == u[i] + 1)) isChain = false; } isChain = true; if (isChain) { for (int i = n - 1; i >= 0; i--) { bool hasSelf = false; bool hasNext = false; for (auto& x: graph[i]) { if (x == i) { hasSelf = true; } else { hasNext = true; } } if (a[i] == 1) { if (hasSelf && r[i]) ans[i] = 1; else if (hasNext) ans[i] = ans[i + 1]; } else { if (hasSelf && !r[i]) ans[i] = 0; else if (hasNext) ans[i] = ans[i + 1]; else ans[i] = 1; } } return ans; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 724 KB | Output is correct |
2 | Correct | 3 ms | 724 KB | Output is correct |
3 | Correct | 3 ms | 852 KB | Output is correct |
4 | Correct | 3 ms | 844 KB | Output is correct |
5 | Correct | 3 ms | 864 KB | Output is correct |
6 | Correct | 3 ms | 852 KB | Output is correct |
7 | Correct | 3 ms | 820 KB | Output is correct |
8 | Correct | 3 ms | 812 KB | Output is correct |
9 | Correct | 3 ms | 852 KB | Output is correct |
10 | Correct | 3 ms | 852 KB | Output is correct |
11 | Correct | 4 ms | 724 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | 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 | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 9 ms | 980 KB | Output is correct |
2 | Correct | 6 ms | 980 KB | Output is correct |
3 | Correct | 5 ms | 980 KB | Output is correct |
4 | Incorrect | 6 ms | 980 KB | 3rd lines differ - on the 1st token, expected: '1', found: '0' |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 7 ms | 852 KB | 3rd lines differ - on the 1st token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 980 KB | 3rd lines differ - on the 1st token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 724 KB | Output is correct |
2 | Correct | 3 ms | 724 KB | Output is correct |
3 | Correct | 3 ms | 852 KB | Output is correct |
4 | Correct | 3 ms | 844 KB | Output is correct |
5 | Correct | 3 ms | 864 KB | Output is correct |
6 | Correct | 3 ms | 852 KB | Output is correct |
7 | Correct | 3 ms | 820 KB | Output is correct |
8 | Correct | 3 ms | 812 KB | Output is correct |
9 | Correct | 3 ms | 852 KB | Output is correct |
10 | Correct | 3 ms | 852 KB | Output is correct |
11 | Correct | 4 ms | 724 KB | Output is correct |
12 | Incorrect | 1 ms | 340 KB | 3rd lines differ - on the 2nd token, expected: '1', found: '0' |
13 | Halted | 0 ms | 0 KB | - |