Task: | Longest route |
Sender: | aalto2024h_005 |
Submission time: | 2024-10-23 17:49:58 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.00 s | details |
#2 | WRONG ANSWER | 0.00 s | details |
#3 | WRONG ANSWER | 0.00 s | details |
#4 | WRONG ANSWER | 0.00 s | details |
#5 | WRONG ANSWER | 0.00 s | details |
#6 | WRONG ANSWER | 0.18 s | details |
#7 | WRONG ANSWER | 0.17 s | details |
#8 | WRONG ANSWER | 0.17 s | details |
#9 | WRONG ANSWER | 0.17 s | details |
#10 | WRONG ANSWER | 0.17 s | details |
#11 | WRONG ANSWER | 0.16 s | details |
#12 | ACCEPTED | 0.16 s | details |
#13 | ACCEPTED | 0.00 s | details |
#14 | WRONG ANSWER | 0.00 s | details |
#15 | ACCEPTED | 0.12 s | details |
#16 | WRONG ANSWER | 0.00 s | details |
#17 | ACCEPTED | 0.12 s | details |
#18 | WRONG ANSWER | 0.11 s | details |
#19 | WRONG ANSWER | 0.01 s | details |
#20 | ACCEPTED | 0.09 s | details |
#21 | WRONG ANSWER | 0.00 s | details |
Code
#include <bits/stdc++.h> using namespace std; bool topological_sort_rec(int n, vector<vector<int>> &adj, int *state, vector<int> &out, int x) { state[x] = 1; for (int p : adj[x]) { if (state[p] == 1) return false; else if (state[p] == 0) { bool r = topological_sort_rec(n, adj, state, out, p); if (!r) return false; } } state[x] = 2; out.push_back(x); return true; } bool topological_sort(int n, vector<vector<int>> &adj, vector<int> &out) { int *state = new int[n]; for (int i = 0; i < n; i++) state[i] = 0; for (int i = 0; i < n; i++) { if (state[i] == 0) { // not yet visited bool r = topological_sort_rec(n, adj, state, out, i); if (!r) return false; } } reverse(out.begin(), out.end()); return true; } int main() { int n, m; cin >> n >> m; vector<vector<int>> adj(n); for (int i = 0; i < m; i++) { int a, b; cin >> a >> b; a--, b--; adj[a].push_back(b); } vector<int> out; topological_sort(n, adj, out); cout << out.size() << endl; for (int c : out) { cout << c+1 << " "; } cout << endl; }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
10 10 2 6 1 2 4 6 5 6 ... |
correct output |
---|
5 1 2 5 6 10 |
user output |
---|
10 7 8 4 9 3 1 2 5 6 10 |
Test 2
Verdict: WRONG ANSWER
input |
---|
10 10 3 9 6 5 6 9 2 8 ... |
correct output |
---|
4 1 2 8 10 |
user output |
---|
10 7 6 5 4 3 9 1 2 8 10 |
Test 3
Verdict: WRONG ANSWER
input |
---|
10 10 5 10 4 10 8 7 7 10 ... |
correct output |
---|
3 1 4 10 |
user output |
---|
10 8 6 3 2 5 7 1 4 9 10 |
Test 4
Verdict: WRONG ANSWER
input |
---|
10 10 8 10 2 6 2 10 7 10 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
10 8 9 7 5 4 3 2 10 6 1 |
Test 5
Verdict: WRONG ANSWER
input |
---|
10 10 8 4 2 10 1 3 4 9 ... |
correct output |
---|
5 1 8 7 2 10 |
user output |
---|
10 5 6 1 8 7 2 4 9 10 3 |
Test 6
Verdict: WRONG ANSWER
input |
---|
100000 200000 86085 57043 45527 29537 41919 84699 95993 82082 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
100000 99999 99997 99989 99986 99985 ... |
Test 7
Verdict: WRONG ANSWER
input |
---|
100000 200000 10961 53490 59843 36636 40674 66772 32618 41570 ... |
correct output |
---|
31 1 37239 44082 21537 90572 7332... |
user output |
---|
100000 99999 99991 99990 99978 99975 ... |
Test 8
Verdict: WRONG ANSWER
input |
---|
100000 200000 87375 76468 38855 27547 49415 83191 38572 1524 ... |
correct output |
---|
35 1 91343 59014 56722 34054 3875... |
user output |
---|
100000 99999 99998 99996 99993 99991 ... |
Test 9
Verdict: WRONG ANSWER
input |
---|
100000 200000 17973 70097 19982 80323 96486 2404 75650 63274 ... |
correct output |
---|
36 1 25685 90292 59380 91058 2663... |
user output |
---|
100000 99996 99993 99986 99984 99983 ... |
Test 10
Verdict: WRONG ANSWER
input |
---|
100000 200000 74343 53088 97443 7885 64807 58252 9374 33312 ... |
correct output |
---|
28 1 26390 15278 11333 48479 6881... |
user output |
---|
100000 99998 99996 99995 99992 99991 ... |
Test 11
Verdict: WRONG ANSWER
input |
---|
100000 199998 1 100000 1 100000 2 100000 2 100000 ... |
correct output |
---|
2 1 100000 |
user output |
---|
100000 99999 99998 99997 99996 99995 ... |
Test 12
Verdict: ACCEPTED
input |
---|
100000 199998 1 2 1 2 2 3 2 3 ... |
correct output |
---|
100000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
user output |
---|
100000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
Test 13
Verdict: ACCEPTED
input |
---|
2 1 1 2 |
correct output |
---|
2 1 2 |
user output |
---|
2 1 2 |
Test 14
Verdict: WRONG ANSWER
input |
---|
5 4 1 2 2 3 3 4 1 5 |
correct output |
---|
2 1 5 |
user output |
---|
5 1 5 2 3 4 |
Test 15
Verdict: ACCEPTED
input |
---|
99999 149997 1 3 3 5 5 7 7 9 ... |
correct output |
---|
99999 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
user output |
---|
99999 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
Test 16
Verdict: WRONG ANSWER
input |
---|
3 2 1 3 3 2 |
correct output |
---|
2 1 3 |
user output |
---|
3 1 3 2 |
Test 17
Verdict: ACCEPTED
input |
---|
99999 149997 1 2 2 4 4 6 6 8 ... |
correct output |
---|
99999 1 3 2 5 4 7 6 9 8 11 10 13 12 ... |
user output |
---|
99999 1 3 2 5 4 7 6 9 8 11 10 13 12 ... |
Test 18
Verdict: WRONG ANSWER
input |
---|
100000 200000 1 2 1 3 1 4 1 5 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
100000 100000 99999 99998 99997 99996... |
Test 19
Verdict: WRONG ANSWER
input |
---|
5 4 2 1 3 1 1 4 1 5 |
correct output |
---|
2 1 5 |
user output |
---|
5 3 2 1 5 4 |
Test 20
Verdict: ACCEPTED
input |
---|
100000 99999 99999 100000 99998 99999 99997 99998 99996 99997 ... |
correct output |
---|
100000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
user output |
---|
100000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
Test 21
Verdict: WRONG ANSWER
input |
---|
4 4 3 1 3 4 1 2 2 4 |
correct output |
---|
3 1 2 4 |
user output |
---|
4 3 1 2 4 |