# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1057153 | Drifter24 | Easter Eggs (info1cup17_eastereggs) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void dfs(int v, int p, vector<vector<int>>& adj, vector<int>& ans){
ans.push_back(v);
for(int u:adj[v]){
if(u==p)continue;
dfs(u, v, adj, ans);
}
}
int findEgg(int N, vector < pair < int, int > > bridges){
vector<int> ans;
vector<vector<int>> adj(N+1, vector<int>());
for(auto x:bridges){
adj[x.first].push_back(x.second);
adj[x.second].push_back(x.first);
}
dfs(1, 0, adj, ans);
int l=1,r=N;
while(l<=r){
int m=l+(r-l)/2;
vector<int> q;
for(int i=0;i<m;++i)q.push_back(ans[i]);
if(query(q))r=m-1;
else l=m+1;
}
return ans[min(N, r+1)-1];
}