# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1096881 | 0pt1mus23 | Easter Eggs (info1cup17_eastereggs) | C++14 | 196 ms | 131072 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
const int sze = 600;
vector<int> graph[sze];
vector<int> path;
void dfs(int node,int par=-1){
path.push_back(node);
for(auto v:graph[node]){
if(v==par){
continue;
}
dfs(v,node);
}
}
int findEgg (int n, vector<pair<int,int>> edges){
int ans=1;
for(auto [k,v]:edges){
graph[k].push_back(v);
graph[v].push_back(k);
}
dfs(1);
int l =0;
int r = n-1;
vector<int> lst;
while(l<=r){
int mid = (l+r)/2;
lst.clear();
for(int i=0;i<=mid;i++){
lst.push_back(path[i]);
}
if(query(lst)){
ans=lst.back();
r = mid-1;
}
else{
l = mid+1;
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |