postmen.cpp: In function 'bool dfs(int, int, int)':
postmen.cpp:19:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for (int i = 0; i < edge[u].size(); i++) {
| ~~^~~~~~~~~~~~~~~~
postmen.cpp: In function 'void solve(int)':
postmen.cpp:34:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | for (int i = 0; i < path[iter].size(); i++) viss[path[iter][i]] = 0;
| ~~^~~~~~~~~~~~~~~~~~~
postmen.cpp:37:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | for (int i = 0; i < path[iter].size()-1; i++) cout << path[iter][i] << " ";
| ~~^~~~~~~~~~~~~~~~~~~~~
postmen.cpp:39:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | for (int i = 0; i < path[iter].size()-1; i++) solve(path[iter][i]);
| ~~^~~~~~~~~~~~~~~~~~~~~