Submission #1096884

# Submission time Handle Problem Language Result Execution time Memory
1096884 2024-10-05T10:38:10 Z 0pt1mus23 Easter Eggs (info1cup17_eastereggs) C++14
0 / 100
10 ms 756 KB
#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=n;
    path.clear();
    for(int i=0;i<=n;i++){
        graph[i].clear();
    }
    for(auto v:edges){
        graph[v.first].push_back(v.second);
        graph[v.second].push_back(v.first);
    }
    dfs(1);
    int l =0;
    int r = n-2;
    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;
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 10 ms 756 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -