Task: | Distinct Routes |
Sender: | louaha1 |
Submission time: | 2024-10-21 17:26:46 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.01 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | ACCEPTED | 0.00 s | details |
#7 | ACCEPTED | 0.00 s | details |
#8 | ACCEPTED | 0.00 s | details |
#9 | ACCEPTED | 0.00 s | details |
#10 | ACCEPTED | 0.00 s | details |
#11 | WRONG ANSWER | 0.00 s | details |
#12 | ACCEPTED | 0.01 s | details |
#13 | ACCEPTED | 0.00 s | details |
#14 | ACCEPTED | 0.00 s | details |
#15 | WRONG ANSWER | 0.00 s | details |
Code
#include <iostream> #include <vector> #include <algorithm> #include <queue> using namespace std; const int MAXN = 501; vector<int> adj[MAXN]; // Adjacency list to store the teleporters vector<int> visited(MAXN, 0); // Visited array to track visited rooms vector<int> parent(MAXN, -1); // To store the parent of each node in the path vector<vector<int>> routes; // To store all valid routes // BFS to find the shortest path from room 1 to room n bool bfs(int n) { queue<int> q; q.push(1); visited.assign(MAXN, 0); // Reset visited array parent.assign(MAXN, -1); // Reset parent array visited[1] = 1; while (!q.empty()) { int u = q.front(); q.pop(); if (u == n) { vector<int> path; while (u != -1) { // Construct the path by following parents path.push_back(u); u = parent[u]; } reverse(path.begin(), path.end()); // Reverse to get the path from 1 to n routes.push_back(path); // Store the route return true; } for (int v : adj[u]) { if (!visited[v]) { visited[v] = 1; parent[v] = u; q.push(v); } } } return false; } int main() { int n, m; cin >> n >> m; for (int i = 0; i < m; i++) { int a, b; cin >> a >> b; adj[a].push_back(b); // Add teleporter from room a to room b } int days = 0; while (bfs(n)) { // Keep finding paths until no more paths exist days++; int u = n; while (parent[u] != -1) { // Remove the edges used in the current path int p = parent[u]; adj[p].erase(remove(adj[p].begin(), adj[p].end(), u), adj[p].end()); u = p; } } cout << days << endl; // Output the number of days for (const auto& route : routes) { cout << route.size() << endl; // Output the size of each route for (int room : route) { cout << room << " "; // Output the rooms in the current route } cout << endl; } return 0; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
2 1 1 2 |
correct output |
---|
1 2 1 2 |
user output |
---|
1 2 1 2 |
Test 2
Verdict: ACCEPTED
input |
---|
4 2 1 2 3 4 |
correct output |
---|
0 |
user output |
---|
0 |
Test 3
Verdict: ACCEPTED
input |
---|
500 996 1 2 2 500 1 3 3 500 ... |
correct output |
---|
498 3 1 2 500 3 1 3 500 ... |
user output |
---|
498 3 1 2 500 3 1 3 500 ... Truncated |
Test 4
Verdict: ACCEPTED
input |
---|
500 499 1 2 2 3 3 4 4 5 ... |
correct output |
---|
1 500 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
user output |
---|
1 500 1 2 3 4 5 6 7 8 9 10 11 12 13 ... Truncated |
Test 5
Verdict: ACCEPTED
input |
---|
2 1 2 1 |
correct output |
---|
0 |
user output |
---|
0 |
Test 6
Verdict: ACCEPTED
input |
---|
40 1000 25 22 15 24 7 33 16 32 ... |
correct output |
---|
21 44 1 35 39 34 29 32 22 38 20 30 1... |
user output |
---|
21 3 1 35 40 3 1 3 40 ... Truncated |
Test 7
Verdict: ACCEPTED
input |
---|
75 1000 72 6 46 66 63 45 70 46 ... |
correct output |
---|
12 30 1 29 24 9 18 63 45 31 66 72 6 ... |
user output |
---|
12 3 1 54 75 4 1 70 12 75 ... Truncated |
Test 8
Verdict: ACCEPTED
input |
---|
100 1000 75 97 7 62 88 25 36 44 ... |
correct output |
---|
9 51 1 35 15 86 79 34 43 94 83 75 9... |
user output |
---|
9 2 1 100 4 1 35 23 100 ... Truncated |
Test 9
Verdict: ACCEPTED
input |
---|
3 2 1 2 2 3 |
correct output |
---|
1 3 1 2 3 |
user output |
---|
1 3 1 2 3 |
Test 10
Verdict: ACCEPTED
input |
---|
11 12 1 2 2 3 3 4 4 5 ... |
correct output |
---|
2 6 1 2 3 4 5 11 7 1 6 7 8 9 10 11 |
user output |
---|
2 6 1 2 3 4 5 11 7 1 6 7 8 9 10 11 |
Test 11
Verdict: WRONG ANSWER
input |
---|
8 9 1 2 2 3 3 8 1 4 ... |
correct output |
---|
2 5 1 2 6 7 8 5 1 4 5 3 8 |
user output |
---|
1 4 1 2 3 8 |
Test 12
Verdict: ACCEPTED
input |
---|
8 9 1 2 1 3 2 3 3 4 ... |
correct output |
---|
1 8 1 2 3 4 5 6 7 8 |
user output |
---|
1 7 1 3 4 5 6 7 8 |
Test 13
Verdict: ACCEPTED
input |
---|
7 9 1 2 1 3 2 7 3 4 ... |
correct output |
---|
3 3 1 2 7 4 1 3 5 7 ... |
user output |
---|
3 3 1 2 7 4 1 3 4 7 ... |
Test 14
Verdict: ACCEPTED
input |
---|
7 15 3 6 5 2 5 4 3 5 ... |
correct output |
---|
2 5 1 2 3 6 7 4 1 4 5 7 |
user output |
---|
2 4 1 2 5 7 7 1 4 5 2 3 6 7 |
Test 15
Verdict: WRONG ANSWER
input |
---|
500 986 244 252 224 22 81 484 273 432 ... |
correct output |
---|
116 5 1 129 142 473 500 5 1 63 158 171 500 ... |
user output |
---|
58 4 1 154 473 500 4 1 202 252 500 ... Truncated |