# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
61575 | IOrtroiii | Easter Eggs (info1cup17_eastereggs) | C++14 | 24 ms | 5696 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
const int N = 1e5 + 5;
int n;
vector<int> G[N];
bool can[N], chosen[N];
int cur, need, cnt;
vector<int> ask;
bool egg[N];
void dfs(int u,int p) {
if (cnt == need) return;
if (can[u]) cnt++;
ask.push_back(u); chosen[u] = 1;
for (int v : G[u]) if (v != p) {
dfs(v, u);
}
}
int findEgg(int N,vector<pair<int,int>> bridges) {
n = N;
for (int i = 1; i <= n; ++i) can[i] = 1;
for (auto ed : bridges) {
int u = ed.first, v = ed.second;
G[u].push_back(v), G[v].push_back(u);
}
cur = n;
while (cur != 1) {
ask.clear();
need = (cur + 1) / 2;
for (int i = 1; i <= n; ++i) chosen[i] = 0;
cnt = 0;
dfs(1, 1);
if (query(ask)) {
for (int i = 1; i <= n; ++i) if (!chosen[i]) {
can[i] = 0;
}
cur = need;
}
else {
for (int v : ask) can[v] = 0;
cur -= need;
}
}
for (int i = 1; i <= n; ++i) if (can[i]) {
return i;
}
}
Compilation message (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... |