stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:31:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | for(int i = 0; i < c.size(); i++){
| ~~^~~~~~~~~~
stations.cpp:30:5: warning: unused variable 'ls' [-Wunused-variable]
30 | ll ls = s / 1000, rs = s % 1000, lt = t / 1000, rt = t % 1000;
| ^~
stations.cpp:30:20: warning: unused variable 'rs' [-Wunused-variable]
30 | ll ls = s / 1000, rs = s % 1000, lt = t / 1000, rt = t % 1000;
| ^~
stations.cpp:36:1: warning: control reaches end of non-void function [-Wreturn-type]
36 | }
| ^