# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
666665 | 2022-11-29T09:11:04 Z | divad | Easter Eggs (info1cup17_eastereggs) | C++17 | 3 ms | 592 KB |
#include <cstring> #include <vector> #include <deque> #include "grader.h" #define MAX 522 using namespace std; int vf[MAX]; vector<int> v[MAX]; vector<int> bfs(vector< pair<int, int> > bridges){ memset(vf, 0, sizeof(vf)); for(int i = 0; i < MAX; i++){ v[i].clear(); } for(auto [x, y]: bridges){ v[x].push_back(y); v[y].push_back(x); } deque<int> coada; vf[1] = 1; coada.push_back(1); while(!coada.empty()){ int nod = coada.back(); for(auto vecin: v[nod]){ if(vf[vecin] == 0){ vf[vecin] = 1+vf[nod]; coada.push_front(vecin); } } coada.pop_back(); } } int findEgg(int N, vector< pair<int, int> > bridges){ vector<int> parcurgere = bfs(bridges); /// 0 0 0 0 1 1 1 1 /// ^ int st = 0, dr = parcurgere.size()-1; int ans = 0; while(st <= dr){ int mid = (st+dr)/2; vector<int> partit; for(int i = 0; i <= mid; i++){ partit.push_back(parcurgere[i]); } if(query(partit)){ ans = mid; dr = mid-1; }else{ st = mid+1; } } return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 592 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 592 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 592 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |