stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:7:17: warning: unused variable 'tin' [-Wunused-variable]
7 | int timer = 0, tin[n], tout[n];
| ^~~
stations.cpp:7:25: warning: unused variable 'tout' [-Wunused-variable]
7 | int timer = 0, tin[n], tout[n];
| ^~~~
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:26:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | for(int i = 0; i < c.size(); ++i){
| ~~^~~~~~~~~~
stations.cpp:36:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | for(int i = 0; i < c.size() - 1; ++i){
| ~~^~~~~~~~~~~~~~