stations.cpp: In function 'void dfs(int)':
stations.cpp:15:8: warning: left operand of comma operator has no effect [-Wunused-value]
15 | debug("dfs %d\n",x);
| ^~~~~~~~~~
stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:48:9: warning: left operand of comma operator has no effect [-Wunused-value]
48 | debug("%d ",i);
| ^~~~~
stations.cpp:49:8: warning: statement has no effect [-Wunused-value]
49 | debug("\n");
| ~^~~~~
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:54:8: warning: left operand of comma operator has no effect [-Wunused-value]
54 | debug("qr %d %d ~",s,t); for(int i : c) debug("%d ",i); debug("\n");
| ^~~~~~~~~~~~
stations.cpp:54:23: warning: right operand of comma operator has no effect [-Wunused-value]
54 | debug("qr %d %d ~",s,t); for(int i : c) debug("%d ",i); debug("\n");
| ^
stations.cpp:54:48: warning: left operand of comma operator has no effect [-Wunused-value]
54 | debug("qr %d %d ~",s,t); for(int i : c) debug("%d ",i); debug("\n");
| ^~~~~
stations.cpp:54:64: warning: statement has no effect [-Wunused-value]
54 | debug("qr %d %d ~",s,t); for(int i : c) debug("%d ",i); debug("\n");
| ~^~~~~
stations.cpp:62:16: 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();i++){
| ~^~~~~~~~~
stations.cpp:73:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
73 | for(int i=1;i<c.size()-1;i++){
| ~^~~~~~~~~~~
stations.cpp:78:1: warning: control reaches end of non-void function [-Wreturn-type]
78 | }
| ^