eastereggs.cpp: In function 'void dfs(int, int)':
eastereggs.cpp:11:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
11 | for (int i=0;i<v[nod].size();i++)
| ~^~~~~~~~~~~~~~
eastereggs.cpp: In function 'int findEgg(int, std::vector<std::pair<int, int> >)':
eastereggs.cpp:48:12: error: 'ret' was not declared in this scope
48 | return ret;
| ^~~
eastereggs.cpp:44:9: warning: unused variable 'ans' [-Wunused-variable]
44 | int ans = ord[r-1];
| ^~~