답안 #743529

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
743529 2023-05-17T13:22:53 Z AndrijaM Easter Eggs (info1cup17_eastereggs) C++14
0 / 100
3 ms 464 KB
#include <bits/stdc++.h>
#include "grader.h"

using namespace std;

vector<int>g[513];
vector<int>a;

void dfs(int node,int par)
{
    a.push_back(node);
    for(auto idx:g[node])
    {
        if(idx!=par)
        dfs(idx,node);
    }
}

int findEgg (int n, vector < pair < int, int > > b)
{
    for (int i = 1; i <= n; i++) g[i].clear();
	a.clear();
    for(auto idx:b)
    {
        g[idx.first].push_back(idx.second);
        g[idx.second].push_back(idx.first);
    }
    dfs(1,-1);
    int l=0;
    int r=n-1;
    while(l<r)
    {
        int mid=l+(r-l)/2;
        if(query(vector<int>(a.begin(),a.begin()+mid+1)))r=mid;
        else
        {
            l=mid;
        }
    }
    return a[l];
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 464 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 464 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 3 ms 464 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -