이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
#define f first
#define s second
using namespace std;
int n;
vector<int> preord;
vector<int> grph[690];
void dfs(int x, int lst=-1) {
preord.push_back(x);
for (int i : grph[x]) if (i!=lst) {
dfs(i,x);
}
}
bool test(int x) {
vector<int> t;
for (int i=0; i<x; i++) {
t.push_back(preord[i]+1);
}
return query(t);
}
int findEgg (int N, vector<pair<int,int>> bridges) {
preord.clear();
for (int i=0; i<690; i++) {
grph[i].clear();
}
n=N;
for (auto i:bridges) {
i.f--;i.s--;
grph[i.f].push_back(i.s);
grph[i.s].push_back(i.f);
}
dfs(0);
int s=0,e=n;
while(s+1!=e) {
int m=(s+e)/2;
(test(m)?e:s)=m;
}
return preord[s]+1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |