# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
781229 |
2023-07-13T00:16:02 Z |
NK_ |
Pipes (CEOI15_pipes) |
C++17 |
|
519 ms |
65536 KB |
// Success consists of going from failure to failure without loss of enthusiasm
#include <bits/stdc++.h>
using namespace std;
#define nl '\n'
#define f first
#define s second
#define mp make_pair
#define pb push_back
using pi = pair<int, int>;
template<class T> using V = vector<T>;
const int eax = 12e6+5;
const int nax = 1e5+5;
pi adj[eax];
int L[nax], R[nax];
// void dfs(int u, int x) {
// disc[u] = ++ti;
// for(auto e : adj[u]) {
// int v, i; tie(v, i) = e;
// if (i == x) continue;
// if (disc[v] == -1) {
// stk[cur++] = mp(u, i);
// dfs(v, i);
// } else {
// int up = disc[v];
// crit[i] = 0;
// // cout << v << " " << up << endl;
// while(cur > 0 && disc[stk[cur - 1].f] >= up) crit[stk[--cur].s] = 0;
// }
// }
// }
int main() {
cin.tie(0)->sync_with_stdio(0);
int N, M; cin >> N >> M;
for(int e = 0; e < M; e++) {
int u, v; cin >> u >> v; --u, --v;
adj[e] = mp(u, v);
adj[e + M] = mp(v, u);
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
468 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
67 ms |
9624 KB |
Output is correct |
2 |
Incorrect |
64 ms |
14724 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
112 ms |
16308 KB |
Output is correct |
2 |
Runtime error |
130 ms |
30204 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
180 ms |
23760 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
217 ms |
28664 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
347 ms |
65536 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
471 ms |
65536 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
498 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
519 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |