Submission #918089

# Submission time Handle Problem Language Result Execution time Memory
918089 2024-01-29T13:06:09 Z Ferid20072020 Easter Eggs (info1cup17_eastereggs) C++14
0 / 100
1 ms 344 KB
#include <bits/stdc++.h>
#include "grader.h"

using namespace std;

int color[513];
vector<vector<int>> g(513);
vector<int> List;

void DFS(int node){
    color[node] = 1;
    List.push_back(node);
    for(auto to : g[node]){
        if(color[to] == 0){
            DFS(to);
        }
    }
}

int findEgg (int N, vector < pair < int, int > > bridges)
{
    for(int i=0 ; i<N-1 ; i++){
        int u , v;
        cin >> u >> v;
        g[u].push_back(v);
        g[v].push_back(u);
    }

    DFS(1);

    int l = 0 , r = N-1;
    while(l <= r){
        int mid = (l + r) / 2;
        vector<int> check;
        for(int i=l ; i<=mid ; i++){
            check.push_back(List[i]);
        }
        int ans = query(check);
        if(ans == 1){
            r = mid - 1;
        }
        else{
            l = mid + 1;
        }
    }
    return (l + r) / 2;
}
# Verdict Execution time Memory Grader output
1 Execution timed out 1 ms 344 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1 ms 344 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1 ms 344 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -