#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
/* /\_/\
(= ._.)
/ > \>
*/
#define pb push_back
int findEgg(int N, vector < pair < int, int > > bridges) {
vector<vector<int>> g(N + 1); vector<int> tour;
for(int i=0;i<N-1;i++) {
int u = bridges[i].first,v = bridges[i].second;
g[u].pb(v);
g[v].pb(u);
}
function<void(int,int)> dfs = [&](int v,int p) {
tour.pb(v);
for(int i : g[v]) {
if(i == p) continue;
dfs(i,v);
}
};
dfs(1,0);
int l = 0,r = N-1;
while(l < r) {
int mid = (l + r)/2; vector<int> islands;
for(int i=l;i<=mid;i++) {
islands.pb(tour[i]);
}
if(query(islands)) {
r = mid;
}else {
l = mid + 1;
}
}
return tour[r];
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Number of queries: 4 |
2 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
3 ms |
600 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |