Submission #1099570

# Submission time Handle Problem Language Result Execution time Memory
1099570 2024-10-11T16:26:56 Z Choco Easter Eggs (info1cup17_eastereggs) C++14
0 / 100
1 ms 600 KB
#include <bits/stdc++.h>
#include "grader.h"
#define ll long long
using namespace std;
vector<vector<int>>v(513);
vector<int>order;
vector<bool>check(513,0);
void dfs(int i){
    check[i]=1;
    order.push_back(i);
    for(auto j: v[i])
    if(!check[j])
    dfs(j);
}
int findEgg (int N, vector < pair < int, int > > bridges)
{
    for(int i=0;i<513;i++){
    v[i].clear();
    check[i]=0;
    }
    order.clear();
    for(int i=0;i<=N-1;i++){
        int x=bridges[i].first;
        int y=bridges[i].second;
        v[i].push_back(y);
        v[y].push_back(x);
    }
    dfs(1);
    int l=0,r=N-1;
    while(l!=r){
        ll mid=(l+r)/2;
        if(query(vector<int>(order.begin(),order.begin()+mid)))
        r=mid;
        else
        l=mid+1;
    }
    return order[l];
}
# Verdict Execution time Memory Grader output
1 Runtime error 0 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 1 ms 600 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -