commuter_pass.cpp: In function 'std::vector<long long int> dijkstra(int)':
commuter_pass.cpp:35:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | for(int i=0;i<adj[c.S].size();i++){
| ~^~~~~~~~~~~~~~~~
commuter_pass.cpp: In function 'void dfs(int)':
commuter_pass.cpp:51:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
51 | for(int i=0;i<adj[x].size();i++){
| ~^~~~~~~~~~~~~~
commuter_pass.cpp: In function 'void solve()':
commuter_pass.cpp:72:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
72 | for(int i=0;i<n;i++)cout<<dps[i]<<" ";cout<<endl;
| ^~~
commuter_pass.cpp:72:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
72 | for(int i=0;i<n;i++)cout<<dps[i]<<" ";cout<<endl;
| ^~~~
commuter_pass.cpp:73:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
73 | for(int i=0;i<n;i++)cout<<dpu[i]<<" ";cout<<endl;
| ^~~
commuter_pass.cpp:73:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
73 | for(int i=0;i<n;i++)cout<<dpu[i]<<" ";cout<<endl;
| ^~~~
commuter_pass.cpp:74:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
74 | for(int i=0;i<n;i++)cout<<dpv[i]<<" ";cout<<endl;
| ^~~
commuter_pass.cpp:74:40: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
74 | for(int i=0;i<n;i++)cout<<dpv[i]<<" ";cout<<endl;
| ^~~~