simurgh.cpp: In function 'std::vector<int> grafo(int)':
simurgh.cpp:30:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
30 | auto &[pp,idx]=q.front();
| ^
simurgh.cpp:43:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
43 | for(auto &[a,b]:p[pos]){
| ^
simurgh.cpp:52:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | for(int j=0;j<arc[i].size();j++){
| ~^~~~~~~~~~~~~~
simurgh.cpp:72:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | for(int j=1;j<arc[i].size();j++){
| ~^~~~~~~~~~~~~~
simurgh.cpp:83:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
83 | for(int j=0;j<arc[i].size();j++){
| ~^~~~~~~~~~~~~~
simurgh.cpp: In function 'std::vector<int> find_roads(int, std::vector<int>, std::vector<int>)':
simurgh.cpp:94:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
94 | for(int i=0;i<u.size();i++){
| ~^~~~~~~~~
simurgh.cpp:102:18: warning: comparison of integer expressions of different signedness: 'std::set<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
102 | if(ans.size()==N-1)break;
| ~~~~~~~~~~^~~~~