이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
vector <int> ord;
vector < vector <int> > G(513);
void dfs(int nod, int t){
ord.push_back(nod);
for(auto x : G[nod]){
if(x == t) continue;
dfs(x, nod);
}
}
int findEgg(int N, vector < pair < int, int > > bridges){
for (int i = 1; i <= N; i++) G[i].clear();
ord.clear();
for(auto x : bridges){
G[x.first].push_back(x.second);
G[x.second].push_back(x.first);
}
dfs(1,0);
int st = 0, dr = N - 1,poz = 0;
while(st <= dr){
int med = (st + dr) >> 1;
if(query(vector <int> (ord.begin(), ord.begin() + med))){
poz = med;
dr = med - 1;
}
else st = med + 1;
}
return poz;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |