stations.cpp: In function 'void dfs(int, int)':
stations.cpp:19:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for(int i = 0 ; i< gr[x].size() ; i++){
| ~^~~~~~~~~~~~~~
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:48:21: 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() - 1 ; i++){
| ~~^~~~~~~~~~~~~~
stations.cpp:59:21: 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 = 1 ; i < c.size() - 1 ; i++){
| ~~^~~~~~~~~~~~~~
stations.cpp:45:16: warning: unused variable 'erg' [-Wunused-variable]
45 | int be , en , erg = -1;
| ^~~