stations.cpp: In function 'void DFS(int, int)':
stations.cpp:9:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
9 | for(int i=0;i<edges[v].size();i++){
| ~^~~~~~~~~~~~~~~~
stations.cpp:12:9: error: void value not ignored as it ought to be
12 | LAST=DFS(edges[v][i],v);
| ~~~^~~~~~~~~~~~~~~
stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:24:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int i=0;i<u.size();i++){
| ~^~~~~~~~~