eastereggs.cpp:5:23: error: 'MAXN' was not declared in this scope
5 | vector<long long> adj[MAXN];
| ^~~~
eastereggs.cpp: In function 'void dfs(long long int, long long int)':
eastereggs.cpp:12:17: error: 'adj' was not declared in this scope
12 | long long s=adj[node].size();
| ^~~
eastereggs.cpp: In function 'int findEgg(int, std::vector<std::pair<int, int> >)':
eastereggs.cpp:31:26: error: 'MAXN' was not declared in this scope
31 | for (long long i=0;i<MAXN;i++) adj[i].clear();
| ^~~~
eastereggs.cpp:31:36: error: 'adj' was not declared in this scope
31 | for (long long i=0;i<MAXN;i++) adj[i].clear();
| ^~~
eastereggs.cpp:36:9: error: 'adj' was not declared in this scope
36 | adj[x].push_back(y);
| ^~~