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