eastereggs.cpp:7:9: error: 'maxn' was not declared in this scope
7 | int tin[maxn], f[maxn], timeDfs;
| ^~~~
eastereggs.cpp:7:18: error: 'maxn' was not declared in this scope
7 | int tin[maxn], f[maxn], timeDfs;
| ^~~~
eastereggs.cpp: In function 'void dfs(int, int)':
eastereggs.cpp:10:5: error: 'tin' was not declared in this scope; did you mean 'tan'?
10 | tin[u] = ++timeDfs;
| ^~~
| tan
eastereggs.cpp:11:5: error: 'f' was not declared in this scope
11 | f[timeDfs] = u;
| ^
eastereggs.cpp:13:16: error: 'g' was not declared in this scope
13 | for(int v: g[u]){
| ^
eastereggs.cpp: In function 'bool ok(int)':
eastereggs.cpp:20:47: error: 'f' was not declared in this scope
20 | for(int i = 1; i <= mid; i++) v.push_back(f[i]);
| ^
eastereggs.cpp:21:12: error: 'query' was not declared in this scope
21 | return query(v);
| ^~~~~
eastereggs.cpp: In function 'int findEgg(int, std::vector<std::pair<int, int> >)':
eastereggs.cpp:28:17: error: 'bridge' was not declared in this scope; did you mean 'bridges'?
28 | int u = bridge[i].first, v = bridge[i].second;
| ^~~~~~
| bridges
eastereggs.cpp:29:9: error: 'g' was not declared in this scope
29 | g[u].push_back(v);
| ^
eastereggs.cpp:29:24: error: 'v' was not declared in this scope
29 | g[u].push_back(v);
| ^
eastereggs.cpp:47:13: error: 'f' was not declared in this scope
47 | cout << f[ans];
| ^
eastereggs.cpp:48:1: warning: no return statement in function returning non-void [-Wreturn-type]
48 | }
| ^