# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
45553 | 2018-04-15T10:50:32 Z | aome | Easter Eggs (info1cup17_eastereggs) | C++17 | 3 ms | 812 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; const int N = 555; int T; int arr[N]; vector<int> G[N]; void dfs(int u, int p) { arr[++T] = u; for (auto v : G[u]) { if (v == p) continue; dfs(v, u); } } int findEgg(int n, vector < pair <int, int> > bridges) { T = 0; for (int i = 1; i <= n; ++i) G[i].clear(); for (int i = 0; i < (n - 1); ++i) { G[bridges[i].first].push_back(bridges[i].second); G[bridges[i].second].push_back(bridges[i].first); } dfs(1, 1); int l = 1, r = n; while (l < r) { int mid = (l + r) >> 1; vector<int> ask; for (int i = 1; i <= mid; ++i) ask.push_back(arr[i]); if (query(ask)) r = mid; else l = mid + 1; } return l; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 504 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 652 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 812 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |