eastereggs.cpp: In function 'void dfs(int, int)':
eastereggs.cpp:16:44: error: 'par' was not declared in this scope; did you mean '__pstl::execution::v1::par'?
16 | for (auto num:graph[node])if (num!=par)dfs(num, node);
| ^~~
| __pstl::execution::v1::par
In file included from /usr/include/c++/11/pstl/glue_algorithm_defs.h:15,
from /usr/include/c++/11/algorithm:74,
from /usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:65,
from eastereggs.cpp:1:
/usr/include/c++/11/pstl/execution_defs.h:111:27: note: '__pstl::execution::v1::par' declared here
111 | constexpr parallel_policy par{};
| ^~~
eastereggs.cpp: In function 'int findEgg(int, std::vector<std::pair<int, int> >)':
eastereggs.cpp:32:36: error: expected ';' before ')' token
32 | for (int i=0; i<mid)temp.pb(ord[i]);
| ^
| ;