simurgh.cpp: In lambda function:
simurgh.cpp:27:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | while(nextNod < perm.size() and g[nod][perm[nextNod]] != -1)
| ~~~~~~~~^~~~~~~~~~~~~
simurgh.cpp: In function 'std::vector<int> find_roads(int, std::vector<int>, std::vector<int>)':
simurgh.cpp:39:18: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
39 | if(vans.size() == n - 1 and count_common_roads(vans) == n - 1)
| ~~~~~~~~~~~~^~~~~~~~
simurgh.cpp:9:42: warning: control reaches end of non-void function [-Wreturn-type]
9 | vector<vector<int>> g(n, vector<int> (n));
| ^