# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
521889 | 2022-02-03T11:27:11 Z | maks007 | Easter Eggs (info1cup17_eastereggs) | C++14 | 1 ms | 456 KB |
#include <bits/stdc++.h> #include "grader.h" using namespace std; vector <int> listt; vector <int> used; vector <vector <int> > g; int f = 0; int ans = 0; void dfs(int v) { if(f) return; listt.push_back(v+1); if(query(listt)) { ans = listt.back(); f = 1; return; } for(auto u : g[v]) { if(f) return; if(!used[u]) { dfs(u); } } } int findEgg (int N, vector < pair < int, int > > bridges) { used.resize(N); g.resize(N); for(int i = 0; i < bridges.size(); i ++) { g[bridges[i].first - 1].push_back(bridges[i].second - 1); g[bridges[i].second - 1].push_back(bridges[i].first - 1); } ans = 0; f = 0; dfs(0); return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 456 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 456 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 456 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |