Task: | Road blockade |
Sender: | paulschulte |
Submission time: | 2024-10-21 17:18:44 +0300 |
Language: | C++ (C++17) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.01 s | details |
#2 | WRONG ANSWER | 0.01 s | details |
#3 | WRONG ANSWER | 0.01 s | details |
#4 | ACCEPTED | 0.01 s | details |
#5 | ACCEPTED | 0.01 s | details |
#6 | ACCEPTED | 0.01 s | details |
#7 | WRONG ANSWER | 0.01 s | details |
#8 | WRONG ANSWER | 0.01 s | details |
#9 | ACCEPTED | 0.01 s | details |
#10 | ACCEPTED | 0.01 s | details |
#11 | ACCEPTED | 0.01 s | details |
#12 | ACCEPTED | 0.01 s | details |
#13 | ACCEPTED | 0.01 s | details |
#14 | ACCEPTED | 0.01 s | details |
#15 | WRONG ANSWER | 0.01 s | details |
#16 | WRONG ANSWER | 0.01 s | details |
#17 | ACCEPTED | 0.01 s | details |
#18 | ACCEPTED | 0.01 s | details |
#19 | ACCEPTED | 0.01 s | details |
#20 | WRONG ANSWER | 0.01 s | details |
#21 | ACCEPTED | 0.01 s | details |
#22 | WRONG ANSWER | 0.01 s | details |
#23 | WRONG ANSWER | 0.01 s | details |
#24 | ACCEPTED | 0.01 s | details |
#25 | WRONG ANSWER | 0.01 s | details |
#26 | WRONG ANSWER | 0.01 s | details |
#27 | ACCEPTED | 0.01 s | details |
#28 | ACCEPTED | 0.01 s | details |
#29 | ACCEPTED | 0.01 s | details |
#30 | WRONG ANSWER | 0.01 s | details |
#31 | WRONG ANSWER | 0.01 s | details |
#32 | ACCEPTED | 0.01 s | details |
#33 | WRONG ANSWER | 0.01 s | details |
#34 | WRONG ANSWER | 0.01 s | details |
#35 | ACCEPTED | 0.01 s | details |
#36 | WRONG ANSWER | 0.01 s | details |
#37 | WRONG ANSWER | 0.01 s | details |
#38 | ACCEPTED | 0.01 s | details |
#39 | WRONG ANSWER | 0.01 s | details |
#40 | WRONG ANSWER | 0.01 s | details |
#41 | WRONG ANSWER | 0.01 s | details |
#42 | WRONG ANSWER | 0.01 s | details |
#43 | ACCEPTED | 0.01 s | details |
#44 | WRONG ANSWER | 0.01 s | details |
#45 | WRONG ANSWER | 0.01 s | details |
#46 | WRONG ANSWER | 0.01 s | details |
#47 | WRONG ANSWER | 0.01 s | details |
#48 | ACCEPTED | 0.01 s | details |
#49 | WRONG ANSWER | 0.01 s | details |
#50 | WRONG ANSWER | 0.01 s | details |
#51 | WRONG ANSWER | 0.01 s | details |
#52 | ACCEPTED | 0.01 s | details |
#53 | WRONG ANSWER | 0.01 s | details |
#54 | WRONG ANSWER | 0.01 s | details |
#55 | WRONG ANSWER | 0.01 s | details |
#56 | WRONG ANSWER | 0.01 s | details |
#57 | WRONG ANSWER | 0.01 s | details |
#58 | ACCEPTED | 0.01 s | details |
#59 | WRONG ANSWER | 0.01 s | details |
#60 | WRONG ANSWER | 0.07 s | details |
#61 | WRONG ANSWER | 0.08 s | details |
#62 | ACCEPTED | 0.10 s | details |
#63 | ACCEPTED | 0.10 s | details |
#64 | WRONG ANSWER | 0.07 s | details |
#65 | WRONG ANSWER | 0.08 s | details |
#66 | WRONG ANSWER | 0.07 s | details |
#67 | WRONG ANSWER | 0.07 s | details |
#68 | ACCEPTED | 0.12 s | details |
#69 | WRONG ANSWER | 0.07 s | details |
Code
// ~/.vim/cpp_template.cpp #include <bits/stdc++.h> #include <iostream> #include <vector> #include <algorithm> #include <string> #include <limits> #define REP(i,a,b) for (int i = a; i < b; i++) // Type Aliases for 1D and 2D vectors with initialization #define vi(n, val) vector<int>(n, val) // 1D vector of ints with size n, initialized to val #define vll(n, val) vector<long long>(n, val) // 1D vector of long longs with size n, initialized to val #define ll long long #define vvi(n, m, val) vector<vector<int>>(n, vector<int>(m, val)) // 2D vector of ints (n x m), initialized to val #define vvll(n, m, val) vector<vector<long long>>(n, vector<long long>(m, val)) // 2D vector of long longs (n x m), initialized to val #define LL_INF std::numeric_limits<long long int>::max() #define INF std::numeric_limits<int>::max() using namespace std; template <typename T> void pV(const std::vector<T>& vec, const std::string& label = "Vector") { std::cout << label << ": [ "; for (const auto& elem : vec) { std::cout << elem << " "; } std::cout << "]" << std::endl; } void dfs(int s, vector<bool> *visited, vector<int> (*adj)[]) { if ((*visited)[s]) return; (*visited)[s] = true; // process node s for (auto u: (*adj)[s]) { dfs(u, visited, adj); } } /* // DEPTH-FRIRST-SEARCH vector<int> adj[N]; vector<bool> visited(N, false); int u, v; for(int i = 0; i < M;i++){ cin >> u >> v; u--; v--; adj[u].push_back(v); adj[v].push_back(u); } */ vector<long long> dijkstra(int N, int x, vector<vector<pair<int,int>>> *adj){ vector<bool> processed(N, false); vector<long long> distance(N, LL_INF); priority_queue<pair<long long,int>> q; //for (int i = 1; i <= n; i++) distance[i] = INF; distance[x] = 0; q.push({0,x}); while (!q.empty()) { int a = q.top().second; q.pop(); if (processed[a]) continue; processed[a] = true; for (auto u : (*adj)[a]) { int b = u.first, w = u.second; if (distance[a]+w < distance[b]) { distance[b] = distance[a]+w; q.push({-distance[b],b}); } } } return distance; } /* DIJKSTRA //vector<vector<pair<int,int>>> adj(N, vector<pair<int, int>>(N)); */ const int MAXN = 100005; vector<pair<int, int>> adj[MAXN]; vector<int> bridges; int tin[MAXN], low[MAXN], timer; bool visited[MAXN]; void IS_BRIDGE(int edge_index) { bridges.push_back(edge_index); } void dfs(int v, int p = -1) { visited[v] = true; tin[v] = low[v] = timer++; for (auto [to, index] : adj[v]) { if (to == p) continue; if (visited[to]) { low[v] = min(low[v], tin[to]); } else { dfs(to, v); low[v] = min(low[v], low[to]); if (low[to] > tin[v]) { IS_BRIDGE(index); } } } } int main() { ios::sync_with_stdio(0); cin.tie(0); // Your code starts here int n, m; cin >> n >> m; for (int i = 0; i < m; ++i) { int a, b; cin >> a >> b; adj[a].emplace_back(b, i + 1); adj[b].emplace_back(a, i + 1); } timer = 0; fill(visited, visited + n + 1, false); fill(tin, tin + n + 1, -1); fill(low, low + n + 1, -1); dfs(1); if (bridges.empty()) { cout << 0 << endl; } else { cout << bridges[0] << endl; } return 0; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
2 1 1 2 |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Verdict: WRONG ANSWER
input |
---|
3 2 1 2 2 3 |
correct output |
---|
1 |
user output |
---|
2 |
Test 3
Verdict: WRONG ANSWER
input |
---|
3 2 2 3 1 2 |
correct output |
---|
2 |
user output |
---|
1 |
Test 4
Verdict: ACCEPTED
input |
---|
3 3 1 2 1 3 2 3 |
correct output |
---|
0 |
user output |
---|
0 |
Test 5
Verdict: ACCEPTED
input |
---|
4 6 1 3 1 4 2 4 2 3 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 6
Verdict: ACCEPTED
input |
---|
4 4 1 3 2 3 3 4 1 2 |
correct output |
---|
3 |
user output |
---|
3 |
Test 7
Verdict: WRONG ANSWER
input |
---|
4 3 1 3 2 4 2 3 |
correct output |
---|
1 |
user output |
---|
2 |
Test 8
Verdict: WRONG ANSWER
input |
---|
4 3 2 3 2 4 1 3 |
correct output |
---|
3 |
user output |
---|
2 |
Test 9
Verdict: ACCEPTED
input |
---|
4 4 3 4 2 3 1 3 1 2 |
correct output |
---|
1 |
user output |
---|
1 |
Test 10
Verdict: ACCEPTED
input |
---|
5 7 2 5 3 5 3 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 11
Verdict: ACCEPTED
input |
---|
5 10 3 4 1 5 1 4 1 2 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 12
Verdict: ACCEPTED
input |
---|
5 6 1 4 3 4 4 5 2 3 ... |
correct output |
---|
3 |
user output |
---|
3 |
Test 13
Verdict: ACCEPTED
input |
---|
5 5 3 5 1 4 1 5 2 3 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 14
Verdict: ACCEPTED
input |
---|
5 7 2 4 1 5 3 5 2 5 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 15
Verdict: WRONG ANSWER
input |
---|
5 4 1 3 2 3 2 4 4 5 |
correct output |
---|
1 |
user output |
---|
4 |
Test 16
Verdict: WRONG ANSWER
input |
---|
5 4 2 4 3 5 2 3 1 4 |
correct output |
---|
4 |
user output |
---|
2 |
Test 17
Verdict: ACCEPTED
input |
---|
5 9 4 5 1 2 3 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 18
Verdict: ACCEPTED
input |
---|
5 10 1 3 2 5 4 5 3 4 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 19
Verdict: ACCEPTED
input |
---|
5 7 1 3 1 2 4 5 2 4 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 20
Verdict: WRONG ANSWER
input |
---|
10 12 2 5 4 9 4 7 3 9 ... |
correct output |
---|
9 |
user output |
---|
12 |
Test 21
Verdict: ACCEPTED
input |
---|
10 43 7 10 1 2 1 3 2 3 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 22
Verdict: WRONG ANSWER
input |
---|
10 11 2 5 2 3 6 7 1 2 ... |
correct output |
---|
4 |
user output |
---|
10 |
Test 23
Verdict: WRONG ANSWER
input |
---|
10 10 4 9 5 9 7 8 6 8 ... |
correct output |
---|
8 |
user output |
---|
10 |
Test 24
Verdict: ACCEPTED
input |
---|
10 12 7 9 3 8 3 5 4 5 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 25
Verdict: WRONG ANSWER
input |
---|
10 9 2 4 8 10 6 7 2 3 ... |
correct output |
---|
9 |
user output |
---|
2 |
Test 26
Verdict: WRONG ANSWER
input |
---|
10 9 3 5 5 7 1 6 4 6 ... |
correct output |
---|
3 |
user output |
---|
8 |
Test 27
Verdict: ACCEPTED
input |
---|
10 37 5 9 3 4 1 4 7 10 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 28
Verdict: ACCEPTED
input |
---|
10 44 2 6 1 2 1 6 4 7 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 29
Verdict: ACCEPTED
input |
---|
10 27 1 10 7 10 4 7 2 9 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 30
Verdict: WRONG ANSWER
input |
---|
100 107 44 59 24 76 35 79 14 57 ... |
correct output |
---|
107 |
user output |
---|
62 |
Test 31
Verdict: WRONG ANSWER
input |
---|
100 107 27 79 43 89 83 96 34 75 ... |
correct output |
---|
42 |
user output |
---|
24 |
Test 32
Verdict: ACCEPTED
input |
---|
100 143 13 14 20 59 25 95 38 84 ... |
correct output |
---|
129 |
user output |
---|
129 |
Test 33
Verdict: WRONG ANSWER
input |
---|
100 155 29 92 3 63 16 18 9 28 ... |
correct output |
---|
36 |
user output |
---|
146 |
Test 34
Verdict: WRONG ANSWER
input |
---|
100 105 74 85 6 49 7 81 45 55 ... |
correct output |
---|
50 |
user output |
---|
72 |
Test 35
Verdict: ACCEPTED
input |
---|
100 121 8 74 14 50 44 55 12 93 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 36
Verdict: WRONG ANSWER
input |
---|
100 102 54 97 45 82 30 78 40 44 ... |
correct output |
---|
35 |
user output |
---|
34 |
Test 37
Verdict: WRONG ANSWER
input |
---|
100 106 57 85 3 58 14 93 31 61 ... |
correct output |
---|
8 |
user output |
---|
38 |
Test 38
Verdict: ACCEPTED
input |
---|
100 188 3 58 53 63 8 19 97 100 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 39
Verdict: WRONG ANSWER
input |
---|
100 100 16 94 48 96 4 37 71 85 ... |
correct output |
---|
41 |
user output |
---|
33 |
Test 40
Verdict: WRONG ANSWER
input |
---|
200 207 111 188 80 121 115 170 157 175 ... |
correct output |
---|
199 |
user output |
---|
146 |
Test 41
Verdict: WRONG ANSWER
input |
---|
200 207 99 117 139 143 151 174 136 184 ... |
correct output |
---|
190 |
user output |
---|
186 |
Test 42
Verdict: WRONG ANSWER
input |
---|
200 287 36 180 125 138 33 147 38 188 ... |
correct output |
---|
77 |
user output |
---|
147 |
Test 43
Verdict: ACCEPTED
input |
---|
200 310 162 195 21 199 95 180 29 127 ... |
correct output |
---|
30 |
user output |
---|
30 |
Test 44
Verdict: WRONG ANSWER
input |
---|
200 205 140 187 127 185 100 196 55 144 ... |
correct output |
---|
150 |
user output |
---|
184 |
Test 45
Verdict: WRONG ANSWER
input |
---|
200 243 8 85 73 137 52 72 51 157 ... |
correct output |
---|
53 |
user output |
---|
25 |
Test 46
Verdict: WRONG ANSWER
input |
---|
200 202 45 72 5 96 1 31 35 187 ... |
correct output |
---|
3 |
user output |
---|
21 |
Test 47
Verdict: WRONG ANSWER
input |
---|
200 214 81 116 113 164 154 199 17 153 ... |
correct output |
---|
45 |
user output |
---|
214 |
Test 48
Verdict: ACCEPTED
input |
---|
200 375 68 93 93 101 87 109 23 56 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 49
Verdict: WRONG ANSWER
input |
---|
200 201 64 124 145 164 103 127 126 186 ... |
correct output |
---|
137 |
user output |
---|
89 |
Test 50
Verdict: WRONG ANSWER
input |
---|
1000 1007 61 967 252 530 105 953 490 826 ... |
correct output |
---|
914 |
user output |
---|
540 |
Test 51
Verdict: WRONG ANSWER
input |
---|
1000 1007 489 976 53 720 478 732 104 111 ... |
correct output |
---|
248 |
user output |
---|
742 |
Test 52
Verdict: ACCEPTED
input |
---|
1000 1435 520 551 702 787 76 719 619 993 ... |
correct output |
---|
1114 |
user output |
---|
1114 |
Test 53
Verdict: WRONG ANSWER
input |
---|
1000 1550 206 315 476 801 287 713 456 677 ... |
correct output |
---|
1059 |
user output |
---|
983 |
Test 54
Verdict: WRONG ANSWER
input |
---|
1000 1005 304 771 84 930 17 988 282 364 ... |
correct output |
---|
714 |
user output |
---|
483 |
Test 55
Verdict: WRONG ANSWER
input |
---|
1000 1221 254 729 301 692 201 239 530 550 ... |
correct output |
---|
406 |
user output |
---|
951 |
Test 56
Verdict: WRONG ANSWER
input |
---|
1000 1002 147 586 502 522 194 372 176 451 ... |
correct output |
---|
117 |
user output |
---|
457 |
Test 57
Verdict: WRONG ANSWER
input |
---|
1000 1075 470 600 129 251 654 850 567 661 ... |
correct output |
---|
642 |
user output |
---|
486 |
Test 58
Verdict: ACCEPTED
input |
---|
1000 1874 668 731 316 335 532 731 523 839 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 59
Verdict: WRONG ANSWER
input |
---|
1000 1009 674 739 96 435 360 670 130 773 ... |
correct output |
---|
768 |
user output |
---|
194 |
Test 60
Verdict: WRONG ANSWER
input |
---|
100000 100007 44087 69715 31775 43251 18923 35874 36912 75163 ... |
correct output |
---|
923 |
user output |
---|
10283 |
Test 61
Verdict: WRONG ANSWER
input |
---|
100000 100007 19253 34700 66338 83144 22343 27898 4199 35494 ... |
correct output |
---|
9842 |
user output |
---|
80006 |
Test 62
Verdict: ACCEPTED
input |
---|
100000 143600 14018 46297 31183 86763 34508 87502 54400 64922 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 63
Verdict: ACCEPTED
input |
---|
100000 155080 7038 29509 13361 87647 1940 92912 7785 12866 ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 64
Verdict: WRONG ANSWER
input |
---|
100000 100005 33360 89287 42922 67061 77709 78585 48488 51346 ... |
correct output |
---|
523 |
user output |
---|
66346 |
Test 65
Verdict: WRONG ANSWER
input |
---|
100000 122199 24155 82039 27201 64021 37961 66619 7615 11277 ... |
correct output |
---|
61740 |
user output |
---|
61491 |
Test 66
Verdict: WRONG ANSWER
input |
---|
100000 100002 13135 96454 53655 77933 52027 71763 40622 57175 ... |
correct output |
---|
60082 |
user output |
---|
82296 |
Test 67
Verdict: WRONG ANSWER
input |
---|
100000 107630 30498 57903 5372 70239 51740 59293 41709 92770 ... |
correct output |
---|
102920 |
user output |
---|
85765 |
Test 68
Verdict: ACCEPTED
input |
---|
100000 187345 5859 71722 58010 74508 66929 91927 15925 53657 ... |
correct output |
---|
129660 |
user output |
---|
129660 |
Test 69
Verdict: WRONG ANSWER
input |
---|
100000 101036 13541 29328 50426 75396 46089 77950 42830 56873 ... |
correct output |
---|
80466 |
user output |
---|
63258 |