#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
#define ff first
#define ss second
vector<int> o;
vector<vector<int> > v;
void dfs(int a, int p){
o.push_back(a);
for(auto node: v[a]){
if(node!=p){
dfs(node,a);
}
}
}
int findEgg(int N, vector<pair<int,int> > bridges){
o.clear();
v.clear(),v.resize(N+1);
for(auto p: bridges){
v[p.ff].push_back(p.ss);
v[p.ss].push_back(p.ff);
}
dfs(1,1);
int l=0,r=N-1;
while(l<=r){
int m=l+(r-l)/2;
vector<int> c(m);
for(int i=0; i<=m; i++) c[i]=o[i];
if(query(c)) r=m-1;
else l=m+1;
}
return o[l];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
436 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
460 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
496 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |