# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
918347 | 2024-01-29T17:14:25 Z | Ferid20072020 | Easter Eggs (info1cup17_eastereggs) | C++17 | 12 ms | 10060 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; const int up = 2e5 + 5; vector<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(); for(int i=0 ; i<up ; i++){ g[i].clear(); } for(int i=0 ; i<bridges.size() ; i++){ int u = bridges[i].first; int v = bridges[i].second; g[u].push_back(v); g[v].push_back(u); } DFS(1 , 0); int l = 0 , r = N - 1; while(l < r){ int mid = (l + r) / 2; vector<int> c; for(int i=l ; i<=mid ; i++){ c.push_back(List[i]); } int ask = query(c); if(ask == 1){ r = mid; } else{ l = mid + 1; } } 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 | 10008 KB | Execution killed with signal 6 |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 6 ms | 10032 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 12 ms | 10060 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |