| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 1082586 | KALARRY | Easter Eggs (info1cup17_eastereggs) | C++14 | 12 ms | 744 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//chockolateman
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
int n,total = 512,counter;
bool asked[520];
vector<int> adj[520];
vector<int> to_ask;
bool possible[520];
void init(int N)
{
    n = N;
    for(int i = 1 ; i <= n ; i++)
        adj[i].clear();
    total = 0;
    for(int i = 1 ; i <= n ; i++)
    {
        asked[i] = false;
        possible[i] = true;
        total++;
    }
}
void dfs(int v,int p)
{
    counter += possible[v];
    to_ask.push_back(v);
    asked[v] = true;
    for(auto u : adj[v])
    {
        if(counter==total/2)
            return;
        if(u!=p)
            dfs(u,v);
    }
}
int findEgg(int N, vector < pair < int, int > > bridges)
{
    init(N);
    for(auto e : bridges)
    {
        int a = e.first;
        int b = e.second;
        adj[a].push_back(b);
        adj[b].push_back(a);
    }
    while(total > 1)
    {
        dfs(1,1);
        int res = query(to_ask);
        if(res==1)
        {
            for(int i = 1 ; i <= N ; i++)
                possible[i] &= asked[i];
        }
        else
            for(auto v : to_ask)
                possible[v] = false;
        
        to_ask.clear();
        counter = 0;
        total = 0;
        for(int i = 1 ; i <= N ; i++)
        {
            total += possible[i];
            asked[i] = false;
        }
    }
    for(int i = 1 ; i <= N ; i++)
        if(possible[i])
            return i;
}
컴파일 시 표준 에러 (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... | ||||
