# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
918169 | 2024-01-29T13:21:44 Z | Ferid20072020 | Easter Eggs (info1cup17_eastereggs) | C++14 | 1 ms | 500 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; int color[513]; vector<vector<int>> g(513); vector<int> List; void DFS(int node){ color[node] = 1; List.push_back(node); for(auto to : g[node]){ if(color[to] == 0){ DFS(to); } } } int findEgg (int N, vector < pair < int, int > > bridges) { g.clear(); List.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); int l = 0 , r = N-1; while(l <= r){ int mid = (l + r) / 2; vector<int> check; for(int i=l ; i<=mid ; i++){ check.push_back(List[i]); } int ans = query(check); if(ans == 1){ r = mid - 1; } else{ l = mid + 1; } } return (l + r) / 2; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 452 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 476 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 500 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |