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