stations.cpp: In function 'int dfs(int, int)':
stations.cpp:17:15: error: 'g' was not declared in this scope
17 | for(auto &x: g[node]){
| ^
stations.cpp: In function 'void calc_labels(int, int, int)':
stations.cpp:37:15: error: 'g' was not declared in this scope
37 | for(auto &x: g[node]){
| ^
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:62:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
62 | for(int i = 0; i<c.size()-1; i++){
| ~^~~~~~~~~~~