eastereggs.cpp: In function 'void dfs(int, int)':
eastereggs.cpp:14:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (v == p) continue; dfs(v, u);
^~
eastereggs.cpp:14:25: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
if (v == p) continue; dfs(v, u);
^~~
eastereggs.cpp: In function 'int findEgg(int, std::vector<std::pair<int, int> >)':
eastereggs.cpp:31:7: error: 'query' was not declared in this scope
if (query(ask)) r = mid; else l = mid + 1;
^~~~~