stations.cpp: In function 'std::vector<int> label(int, int, std::vector<int>, std::vector<int>)':
stations.cpp:22:18: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(ll i=0; i<U.size(); i++)
| ~^~~~~~~~~
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:35:18: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
35 | ll x=s&(1<<10-1),y=s>>10;
| ~~^~
stations.cpp:36:19: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
36 | ll xx=t&(1<<10-1),yy=t>>10;
| ~~^~
stations.cpp:39:22: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
39 | ll o=z&(1<<10-1),oo=z>>10;
| ~~^~
stations.cpp:47:1: warning: control reaches end of non-void function [-Wreturn-type]
47 | }
| ^