# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
243004 | AndyIzGay | Easter Eggs (info1cup17_eastereggs) | C++14 | 27 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
typedef pair<int,int> ii;
typedef vector<ii> vii;
typedef vector<int> vi;
vector<vi> AdjList;
vi qr;
vector<bool> num,ck;
int cur,cnt,n,tmp;
void dfs(int v, int p) {
if(tmp==cur) return;
if(ck[v]) cur++;
qr.push_back(v);
for(int u: AdjList[v]) {
if(u==p) continue;
else dfs(u,v);
}
}
int findEgg(int n, vii edges) {
AdjList.assign(n+1,vi());
num.assign(n+1,-1);
ck.assign(n+1,1);
cnt=n;
for(ii t: edges) {
AdjList[t.first].push_back(t.second);
AdjList[t.second].push_back(t.first);
}
while(cnt!=1) {
tmp=(cnt+1)/2;
컴파일 시 표준 에러 (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... |