# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
918353 | 2024-01-29T17:21:49 Z | Ferid20072020 | Easter Eggs (info1cup17_eastereggs) | C++17 | 14 ms | 10048 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; const int up = 2e5 + 5; vector<int> g[up]; vector<int> List; void DFS(int node , int from){ List.push_back(node); for(auto to : g[node]){ if(to != from){ DFS(to , node); } } } int findEgg (int N, vector < pair < int, int > > bridges) { List.clear(); int i; for(i=0 ; i<up ; i++){ g[i].clear(); } for(i=0 ; i<bridges.size() ; i++){ g[bridges[i].first].push_back(bridges[i].second); g[bridges[i].second].push_back(bridges[i].first); } DFS(1 , 0); int l = 0 , r = N - 1 , mid; vector<int> c; while(l < r){ mid = (l + r) / 2; for(i=l ; i<=mid ; i++){ c.push_back(List[i]); } if(query(c) == 1){ r = mid; } else{ l = mid + 1; } c.clear(); } return List[l]; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 4952 KB | Number of queries: 4 |
2 | Runtime error | 6 ms | 10000 KB | Execution killed with signal 6 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 7 ms | 10024 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 14 ms | 10048 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |