#include<bits/stdc++.h>
#include<grader.h>
#define ff first
#define ss second
#define rep(i,x,n) for(int i=x;i<n;i++)
#define FOR(i,n) rep(i,0,n)
using namespace std;
const int maxn=200200;
vector<int>graph[maxn],ord;
void dfs(int st=1,int par=-1)
{
ord.push_back(st);
for(auto i:graph[st])
{
if(i==par)
continue;
dfs(i,st);
}
}
int findEgg(int n,vector< pair<int,int> >edges)
{
for(auto i:edges)
{
graph[i.ff].push_back(i.ss);
graph[i.ss].push_back(i.ff);
}
dfs();
int l=0,r=n-1;
while(l<r)
{
int mid=l+(r-l)/2;
if(query(vector<int>(ord.begin(),ord.begin()+mid)))
r=mid;
else
l=mid+1;
}
return ord[r];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
7 ms |
9928 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
246 ms |
131076 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
242 ms |
131076 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |