stations.cpp: In function 'void dfs(int)':
stations.cpp:14:15: error: 'G' was not declared in this scope
14 | for(auto &v:G[u]){
| ^
stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:24:3: error: 'G' was not declared in this scope
24 | G.clear();
| ^
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:48:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for(int i=0;i<c.size();i++){
| ~^~~~~~~~~
stations.cpp:59:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for(int i=0;i<c.size();i++){
| ~^~~~~~~~~
stations.cpp:45:8: warning: unused variable 'sub' [-Wunused-variable]
45 | bool sub=0;
| ^~~