Task: | Snakeless path |
Sender: | odanobunaga8199 |
Submission time: | 2024-10-21 17:19:20 +0300 |
Language: | C++ (C++20) |
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.00 s | details |
#7 | WRONG ANSWER | 0.00 s | details |
#8 | WRONG ANSWER | 0.00 s | details |
#9 | WRONG ANSWER | 0.00 s | details |
#10 | WRONG ANSWER | 0.00 s | details |
#11 | WRONG ANSWER | 0.00 s | details |
#12 | WRONG ANSWER | 0.00 s | details |
#13 | WRONG ANSWER | 0.00 s | details |
#14 | WRONG ANSWER | 0.00 s | details |
#15 | WRONG ANSWER | 0.00 s | details |
#16 | WRONG ANSWER | 0.00 s | details |
#17 | WRONG ANSWER | 0.00 s | details |
#18 | WRONG ANSWER | 0.00 s | details |
#19 | WRONG ANSWER | 0.00 s | details |
#20 | WRONG ANSWER | 0.00 s | details |
#21 | WRONG ANSWER | 0.00 s | details |
#22 | WRONG ANSWER | 0.00 s | details |
#23 | WRONG ANSWER | 0.00 s | details |
#24 | WRONG ANSWER | 0.00 s | details |
#25 | WRONG ANSWER | 0.00 s | details |
#26 | WRONG ANSWER | 0.00 s | details |
#27 | WRONG ANSWER | 0.00 s | details |
#28 | WRONG ANSWER | 0.00 s | details |
#29 | WRONG ANSWER | 0.00 s | details |
#30 | WRONG ANSWER | 0.00 s | details |
#31 | WRONG ANSWER | 0.00 s | details |
#32 | WRONG ANSWER | 0.00 s | details |
#33 | WRONG ANSWER | 0.00 s | details |
#34 | WRONG ANSWER | 0.01 s | details |
#35 | WRONG ANSWER | 0.00 s | details |
#36 | WRONG ANSWER | 0.00 s | details |
#37 | WRONG ANSWER | 0.00 s | details |
#38 | WRONG ANSWER | 0.01 s | details |
#39 | WRONG ANSWER | 0.00 s | details |
#40 | WRONG ANSWER | 0.00 s | details |
#41 | WRONG ANSWER | 0.00 s | details |
#42 | WRONG ANSWER | 0.00 s | details |
#43 | WRONG ANSWER | 0.00 s | details |
#44 | TIME LIMIT EXCEEDED | -- | details |
#45 | WRONG ANSWER | 0.00 s | details |
#46 | TIME LIMIT EXCEEDED | -- | details |
#47 | WRONG ANSWER | 0.00 s | details |
#48 | TIME LIMIT EXCEEDED | -- | details |
#49 | WRONG ANSWER | 0.00 s | details |
#50 | WRONG ANSWER | 0.01 s | details |
#51 | WRONG ANSWER | 0.01 s | details |
#52 | WRONG ANSWER | 0.01 s | details |
#53 | WRONG ANSWER | 0.01 s | details |
#54 | WRONG ANSWER | 1.43 s | details |
#55 | WRONG ANSWER | 0.00 s | details |
#56 | TIME LIMIT EXCEEDED | -- | details |
#57 | WRONG ANSWER | 0.00 s | details |
#58 | TIME LIMIT EXCEEDED | -- | details |
#59 | WRONG ANSWER | 0.00 s | details |
#60 | TIME LIMIT EXCEEDED | -- | details |
#61 | WRONG ANSWER | 0.00 s | details |
#62 | WRONG ANSWER | 0.00 s | details |
#63 | TIME LIMIT EXCEEDED | -- | details |
#64 | WRONG ANSWER | 0.01 s | details |
#65 | TIME LIMIT EXCEEDED | -- | details |
#66 | WRONG ANSWER | 0.00 s | details |
#67 | WRONG ANSWER | 0.00 s | details |
#68 | TIME LIMIT EXCEEDED | -- | details |
#69 | WRONG ANSWER | 0.00 s | details |
#70 | TIME LIMIT EXCEEDED | -- | details |
#71 | TIME LIMIT EXCEEDED | -- | details |
#72 | TIME LIMIT EXCEEDED | -- | details |
#73 | TIME LIMIT EXCEEDED | -- | details |
#74 | WRONG ANSWER | 0.13 s | details |
#75 | WRONG ANSWER | 0.07 s | details |
#76 | WRONG ANSWER | 0.14 s | details |
#77 | WRONG ANSWER | 0.04 s | details |
#78 | WRONG ANSWER | 0.01 s | details |
#79 | WRONG ANSWER | 0.04 s | details |
#80 | WRONG ANSWER | 0.05 s | details |
#81 | WRONG ANSWER | 0.04 s | details |
#82 | WRONG ANSWER | 0.04 s | details |
#83 | WRONG ANSWER | 0.10 s | details |
#84 | TIME LIMIT EXCEEDED | -- | details |
#85 | WRONG ANSWER | 0.12 s | details |
#86 | WRONG ANSWER | 0.07 s | details |
#87 | WRONG ANSWER | 0.07 s | details |
#88 | WRONG ANSWER | 0.02 s | details |
#89 | WRONG ANSWER | 0.04 s | details |
Compiler report
input/code.cpp: In member function 'int MaxFlow::dfs(int, int, int)': input/code.cpp:46:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<Edge>::size_type' {aka 'long unsigned int'} [-Wsign-compare] 46 | for(int &cid = ptr[v]; cid < graph[v].size(); cid++) { | ~~~~^~~~~~~~~~~~~~~~~ input/code.cpp: In function 'int main()': input/code.cpp:122:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare] 122 | for(int i=0; i<path.size(); i++){ | ~^~~~~~~~~~~~ input/code.cpp:123:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare] 123 | cout << path[i] << (i < path.size()-1 ? ' ' : '\n'); | ~~^~~~~~~~~~~~~~~
Code
#include <bits/stdc++.h> using namespace std; struct Edge { int to; int rev; int cap; }; class MaxFlow { public: int n; vector<vector<Edge>> graph; vector<int> level; vector<int> ptr; MaxFlow(int nodes) : n(nodes), graph(nodes + 1), level(nodes + 1, -1), ptr(nodes + 1, 0) {} void add_edge(int from, int to, int cap) { Edge a = {to, (int)graph[to].size(), cap}; Edge b = {from, (int)(graph[from].size()), 0}; graph[from].push_back(a); graph[to].push_back(b); } bool bfs(int s, int t) { fill(level.begin(), level.end(), -1); queue<int> q; q.push(s); level[s] = 0; while(!q.empty()) { int v = q.front(); q.pop(); for(auto &e : graph[v]) { if(e.cap > 0 && level[e.to] == -1) { level[e.to] = level[v] + 1; q.push(e.to); if(e.to == t) break; } } } return level[t] != -1; } int dfs(int v, int t, int pushed) { if(v == t) return pushed; for(int &cid = ptr[v]; cid < graph[v].size(); cid++) { Edge &e = graph[v][cid]; if(e.cap > 0 && level[e.to] == level[v] + 1) { int tr = dfs(e.to, t, min(pushed, e.cap)); if(tr > 0) { graph[v][cid].cap -= tr; return tr; } } } return 0; } int max_flow_func(int s, int t) { int flow = 0; while(bfs(s, t)) { fill(ptr.begin(), ptr.end(), 0); while(int pushed = dfs(s, t, INT32_MAX)) { flow += pushed; } } return flow; } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; MaxFlow mf(n); for(int i=0; i<m; i++){ int a, b; cin >> a >> b; mf.add_edge(a, b, 1); } int max_flow = mf.max_flow_func(1, n); vector<vector<int>> paths; vector<vector<Edge>> residual_graph = mf.graph; function<bool(int, int, vector<int>&, vector<vector<Edge>> &)> find_path = [&](int u, int t, vector<int> &path, vector<vector<Edge>> &res_g) -> bool { if(u == t){ return true; } for(auto &e : res_g[u]){ if(e.cap == 0) { e.cap = -1; auto &rev_edge = res_g[e.to][e.rev]; rev_edge.cap = -1; path.push_back(e.to); if(find_path(e.to, t, path, res_g)){ return true; } path.pop_back(); e.cap = 0; rev_edge.cap = 0; } } return false; }; for(int i=0; i<max_flow; i++){ vector<int> path; path.push_back(1); bool found = find_path(1, n, path, residual_graph); if(found){ paths.push_back(path); } } cout << max_flow << "\n"; for(auto &path : paths){ cout << path.size() << "\n"; for(int i=0; i<path.size(); i++){ cout << path[i] << (i < path.size()-1 ? ' ' : '\n'); } } }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
2 1 1 2 |
correct output |
---|
0 |
user output |
---|
1 2 1 2 |
Test 2
Verdict: WRONG ANSWER
input |
---|
3 1 1 3 |
correct output |
---|
3 1 2 3 |
user output |
---|
1 2 1 3 |
Test 3
Verdict: WRONG ANSWER
input |
---|
3 1 1 3 |
correct output |
---|
3 1 2 3 |
user output |
---|
1 2 1 3 |
Test 4
Verdict: WRONG ANSWER
input |
---|
3 1 1 3 |
correct output |
---|
3 1 2 3 |
user output |
---|
1 2 1 3 |
Test 5
Verdict: WRONG ANSWER
input |
---|
4 1 1 4 |
correct output |
---|
3 1 3 4 |
user output |
---|
1 2 1 4 |
Test 6
Verdict: WRONG ANSWER
input |
---|
4 5 1 2 1 3 1 4 2 3 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 3 2 1 4 |
Test 7
Verdict: WRONG ANSWER
input |
---|
4 3 1 2 1 3 1 4 |
correct output |
---|
0 |
user output |
---|
1 2 1 4 |
Test 8
Verdict: WRONG ANSWER
input |
---|
4 2 1 3 2 3 |
correct output |
---|
2 1 4 |
user output |
---|
0 |
Test 9
Verdict: WRONG ANSWER
input |
---|
4 4 1 2 1 4 2 3 3 4 |
correct output |
---|
0 |
user output |
---|
2 4 1 2 3 4 2 1 4 |
Test 10
Verdict: WRONG ANSWER
input |
---|
5 6 1 2 1 4 1 5 2 5 ... |
correct output |
---|
5 1 3 2 4 5 |
user output |
---|
2 3 1 2 5 2 1 5 |
Test 11
Verdict: WRONG ANSWER
input |
---|
5 5 1 2 1 3 1 5 2 5 ... |
correct output |
---|
3 1 4 5 |
user output |
---|
3 3 1 2 5 3 1 3 5 ... |
Test 12
Verdict: WRONG ANSWER
input |
---|
5 5 1 3 1 4 1 5 3 5 ... |
correct output |
---|
3 1 2 5 |
user output |
---|
3 3 1 3 5 3 1 4 5 ... |
Test 13
Verdict: WRONG ANSWER
input |
---|
5 6 1 3 1 4 1 5 2 4 ... |
correct output |
---|
5 1 2 3 4 5 |
user output |
---|
2 3 1 3 5 2 1 5 |
Test 14
Verdict: WRONG ANSWER
input |
---|
5 9 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
4 3 1 2 5 3 1 3 5 ... |
Test 15
Verdict: WRONG ANSWER
input |
---|
5 7 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 3 1 2 5 2 1 5 |
Test 16
Verdict: WRONG ANSWER
input |
---|
5 1 1 5 |
correct output |
---|
3 1 4 5 |
user output |
---|
1 2 1 5 |
Test 17
Verdict: WRONG ANSWER
input |
---|
5 4 1 2 1 3 1 4 1 5 |
correct output |
---|
0 |
user output |
---|
1 2 1 5 |
Test 18
Verdict: WRONG ANSWER
input |
---|
5 9 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
3 7 1 3 2 1 4 3 5 2 1 5 |
Test 19
Verdict: WRONG ANSWER
input |
---|
5 4 1 2 1 3 1 4 1 5 |
correct output |
---|
0 |
user output |
---|
1 2 1 5 |
Test 20
Verdict: WRONG ANSWER
input |
---|
10 16 1 2 1 3 1 4 1 5 ... |
correct output |
---|
6 1 6 9 8 7 10 |
user output |
---|
7 3 1 2 10 3 1 3 10 ... |
Test 21
Verdict: WRONG ANSWER
input |
---|
10 16 1 2 1 3 1 4 1 5 ... |
correct output |
---|
5 1 9 8 7 10 |
user output |
---|
8 3 1 2 10 3 1 3 10 ... |
Test 22
Verdict: WRONG ANSWER
input |
---|
10 16 1 2 1 4 1 5 1 6 ... |
correct output |
---|
10 1 3 9 8 7 6 5 4 2 10 |
user output |
---|
8 4 1 2 3 10 3 1 4 10 ... |
Test 23
Verdict: WRONG ANSWER
input |
---|
10 16 1 3 1 4 1 5 1 6 ... |
correct output |
---|
6 1 2 9 8 7 10 |
user output |
---|
7 3 1 3 10 3 1 4 10 ... |
Test 24
Verdict: WRONG ANSWER
input |
---|
10 39 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
9 3 1 2 10 3 1 3 10 ... Truncated |
Test 25
Verdict: WRONG ANSWER
input |
---|
10 17 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 3 1 2 10 2 1 10 |
Test 26
Verdict: WRONG ANSWER
input |
---|
10 1 1 10 |
correct output |
---|
3 1 9 10 |
user output |
---|
1 2 1 10 |
Test 27
Verdict: WRONG ANSWER
input |
---|
10 9 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 10 |
Test 28
Verdict: WRONG ANSWER
input |
---|
10 40 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
7 3 1 2 10 3 1 3 10 ... |
Test 29
Verdict: WRONG ANSWER
input |
---|
10 9 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 10 |
Test 30
Verdict: WRONG ANSWER
input |
---|
100 196 1 2 1 3 1 4 1 5 ... |
correct output |
---|
31 1 60 99 98 97 96 95 94 93 92 9... |
user output |
---|
97 3 1 2 100 3 1 3 100 ... Truncated |
Test 31
Verdict: WRONG ANSWER
input |
---|
100 196 1 2 1 3 1 4 1 5 ... |
correct output |
---|
30 1 99 98 97 96 95 94 93 92 91 9... |
user output |
---|
98 3 1 2 100 3 1 3 100 ... Truncated |
Test 32
Verdict: WRONG ANSWER
input |
---|
100 196 1 2 1 3 1 4 1 5 ... |
correct output |
---|
98 1 20 99 98 97 96 95 94 93 92 9... |
user output |
---|
98 3 1 2 100 3 1 3 100 ... Truncated |
Test 33
Verdict: WRONG ANSWER
input |
---|
100 196 1 2 1 3 1 4 1 5 ... |
correct output |
---|
32 1 8 99 98 97 96 95 94 93 92 91... |
user output |
---|
97 3 1 2 100 3 1 3 100 ... Truncated |
Test 34
Verdict: WRONG ANSWER
input |
---|
100 4910 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
96 3 1 2 100 3 1 3 100 ... Truncated |
Test 35
Verdict: WRONG ANSWER
input |
---|
100 197 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 7 2 1 100 |
Test 36
Verdict: WRONG ANSWER
input |
---|
100 248 1 8 1 29 1 53 1 61 ... |
correct output |
---|
3 1 99 100 |
user output |
---|
4 14 1 8 10 49 30 10 9 15 49 74 71 ... Truncated |
Test 37
Verdict: WRONG ANSWER
input |
---|
100 99 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 100 |
Test 38
Verdict: WRONG ANSWER
input |
---|
100 4888 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
99 3 1 2 100 3 1 3 100 ... Truncated |
Test 39
Verdict: WRONG ANSWER
input |
---|
100 99 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 100 |
Test 40
Verdict: WRONG ANSWER
input |
---|
200 396 1 2 1 3 1 4 1 5 ... |
correct output |
---|
60 1 119 199 198 197 196 195 194 ... |
user output |
---|
197 3 1 2 200 3 1 3 200 ... Truncated |
Test 41
Verdict: WRONG ANSWER
input |
---|
200 396 1 2 1 3 1 4 1 5 ... |
correct output |
---|
58 1 199 198 197 196 195 194 193 ... |
user output |
---|
198 3 1 2 200 3 1 3 200 ... Truncated |
Test 42
Verdict: WRONG ANSWER
input |
---|
200 396 1 2 1 3 1 4 1 5 ... |
correct output |
---|
195 1 38 199 198 197 196 195 194 1... |
user output |
---|
198 3 1 2 200 3 1 3 200 ... Truncated |
Test 43
Verdict: WRONG ANSWER
input |
---|
200 396 1 2 1 3 1 4 1 5 ... |
correct output |
---|
61 1 16 199 198 197 196 195 194 1... |
user output |
---|
197 3 1 2 200 3 1 3 200 ... Truncated |
Test 44
Verdict: TIME LIMIT EXCEEDED
input |
---|
200 19807 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
(empty) |
Test 45
Verdict: WRONG ANSWER
input |
---|
200 397 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 12 2 1 200 |
Test 46
Verdict: TIME LIMIT EXCEEDED
input |
---|
200 994 1 8 1 29 1 53 1 61 ... |
correct output |
---|
3 1 199 200 |
user output |
---|
(empty) |
Test 47
Verdict: WRONG ANSWER
input |
---|
200 199 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 200 |
Test 48
Verdict: TIME LIMIT EXCEEDED
input |
---|
200 19792 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
(empty) |
Test 49
Verdict: WRONG ANSWER
input |
---|
200 199 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 200 |
Test 50
Verdict: WRONG ANSWER
input |
---|
1000 1996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
288 1 593 999 998 997 996 995 994 ... |
user output |
---|
997 3 1 2 1000 3 1 3 1000 ... Truncated |
Test 51
Verdict: WRONG ANSWER
input |
---|
1000 1996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
282 1 997 999 998 996 995 994 993 ... |
user output |
---|
998 3 1 2 1000 3 1 3 1000 ... Truncated |
Test 52
Verdict: WRONG ANSWER
input |
---|
1000 1996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
975 1 186 999 998 997 996 995 994 ... |
user output |
---|
998 3 1 2 1000 3 1 3 1000 ... Truncated |
Test 53
Verdict: WRONG ANSWER
input |
---|
1000 1996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
295 1 72 999 998 997 996 995 994 9... |
user output |
---|
997 3 1 2 1000 3 1 3 1000 ... Truncated |
Test 54
Verdict: WRONG ANSWER
input |
---|
1000 299999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
3 1 691 1000 |
user output |
---|
368 3 1 2 1000 3 1 3 1000 ... Truncated |
Test 55
Verdict: WRONG ANSWER
input |
---|
1000 1997 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 57 2 1 1000 |
Test 56
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 25751 1 8 1 29 1 53 1 61 ... |
correct output |
---|
4 1 999 998 1000 |
user output |
---|
(empty) |
Test 57
Verdict: WRONG ANSWER
input |
---|
1000 999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 1000 |
Test 58
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 299999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
3 1 832 1000 |
user output |
---|
(empty) |
Test 59
Verdict: WRONG ANSWER
input |
---|
1000 999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 1000 |
Test 60
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 299999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
3 1 999 1000 |
user output |
---|
(empty) |
Test 61
Verdict: WRONG ANSWER
input |
---|
1000 999 1 1000 2 1000 3 1000 4 1000 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 1000 |
Test 62
Verdict: WRONG ANSWER
input |
---|
1000 999 1 1000 2 1000 3 1000 4 1000 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 1000 |
Test 63
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 195765 1 2 1 3 1 4 1 5 ... |
correct output |
---|
4 1 999 997 1000 |
user output |
---|
(empty) |
Test 64
Verdict: WRONG ANSWER
input |
---|
1000 1996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
229 1 922 999 998 997 996 995 994 ... |
user output |
---|
998 3 1 2 1000 3 1 3 1000 ... Truncated |
Test 65
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 92979 1 6 1 8 1 12 1 18 ... |
correct output |
---|
2 1 1000 |
user output |
---|
(empty) |
Test 66
Verdict: WRONG ANSWER
input |
---|
1000 1997 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 328 2 1 1000 |
Test 67
Verdict: WRONG ANSWER
input |
---|
1000 1997 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 183 2 1 1000 |
Test 68
Verdict: TIME LIMIT EXCEEDED
input |
---|
1000 299999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
3 1 885 1000 |
user output |
---|
(empty) |
Test 69
Verdict: WRONG ANSWER
input |
---|
1000 999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 1000 |
Test 70
Verdict: TIME LIMIT EXCEEDED
input |
---|
100000 199996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
28483 1 59286 99999 99998 99997 9999... |
user output |
---|
(empty) |
Test 71
Verdict: TIME LIMIT EXCEEDED
input |
---|
100000 199996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
27969 1 99719 99999 99998 99997 9999... |
user output |
---|
(empty) |
Test 72
Verdict: TIME LIMIT EXCEEDED
input |
---|
100000 199996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
97408 1 18510 99999 99998 99997 9999... |
user output |
---|
(empty) |
Test 73
Verdict: TIME LIMIT EXCEEDED
input |
---|
100000 199996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
29187 1 7074 99999 99998 99997 99996... |
user output |
---|
(empty) |
Test 74
Verdict: WRONG ANSWER
input |
---|
100000 270197 1 861 1 12080 1 39541 1 39686 ... |
correct output |
---|
3 1 99999 100000 |
user output |
---|
1 2 1 100000 |
Test 75
Verdict: WRONG ANSWER
input |
---|
100000 199997 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 5519 2 1 100000 |
Test 76
Verdict: WRONG ANSWER
input |
---|
100000 284253 1 23553 1 48406 1 56616 1 56899 ... |
correct output |
---|
2 1 100000 |
user output |
---|
0 |
Test 77
Verdict: WRONG ANSWER
input |
---|
100000 99999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 100000 |
Test 78
Verdict: WRONG ANSWER
input |
---|
100000 3335 1 100000 11 26761 12 80933 41 44903 ... |
correct output |
---|
3 1 99999 100000 |
user output |
---|
1 2 1 100000 |
Test 79
Verdict: WRONG ANSWER
input |
---|
100000 99999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 100000 |
Test 80
Verdict: WRONG ANSWER
input |
---|
100000 89632 1 76350 1 97733 1 100000 2 16314 ... |
correct output |
---|
3 1 99999 100000 |
user output |
---|
1 2 1 100000 |
Test 81
Verdict: WRONG ANSWER
input |
---|
100000 99999 1 100000 2 100000 3 100000 4 100000 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 100000 |
Test 82
Verdict: WRONG ANSWER
input |
---|
100000 99999 1 100000 2 100000 3 100000 4 100000 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 100000 |
Test 83
Verdict: WRONG ANSWER
input |
---|
100000 182210 1 17827 1 55463 1 98875 1 100000 ... |
correct output |
---|
3 1 99999 100000 |
user output |
---|
1 2 1 100000 |
Test 84
Verdict: TIME LIMIT EXCEEDED
input |
---|
100000 199996 1 2 1 3 1 4 1 5 ... |
correct output |
---|
22685 1 92190 99999 99998 99997 9999... |
user output |
---|
(empty) |
Test 85
Verdict: WRONG ANSWER
input |
---|
100000 244084 1 33037 1 48376 1 94522 1 100000 ... |
correct output |
---|
3 1 99999 100000 |
user output |
---|
1 2 1 100000 |
Test 86
Verdict: WRONG ANSWER
input |
---|
100000 199997 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 32667 2 1 100000 |
Test 87
Verdict: WRONG ANSWER
input |
---|
100000 199997 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
2 5 1 18179 2 1 100000 |
Test 88
Verdict: WRONG ANSWER
input |
---|
100000 22805 1 100000 2 29973 7 38479 7 77260 ... |
correct output |
---|
3 1 99999 100000 |
user output |
---|
1 2 1 100000 |
Test 89
Verdict: WRONG ANSWER
input |
---|
100000 99999 1 2 1 3 1 4 1 5 ... |
correct output |
---|
0 |
user output |
---|
1 2 1 100000 |