longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:23:17: warning: variable 'r' set but not used [-Wunused-but-set-variable]
23 | int l=0,r=0;
| ^
longesttrip.cpp:64:8: error: 'are_connecter' was not declared in this scope; did you mean 'are_connected'?
64 | if(are_connecter(v,u)==false){
| ^~~~~~~~~~~~~
| are_connected
longesttrip.cpp:74:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
74 | for(int i=0;i<v1.size()/2;i++){
| ~^~~~~~~~~~~~
longesttrip.cpp:77:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
77 | for(int i=v1.size()/2;i<v1.size();i++){
| ~^~~~~~~~~~
longesttrip.cpp:89:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
89 | for(int i=0;i<u1.size()/2;i++){
| ~^~~~~~~~~~~~
longesttrip.cpp:92:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
92 | for(int i=u1.size()/2;i<u1.size();i++){
| ~^~~~~~~~~~
longesttrip.cpp:102:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
102 | for(int i=0;i<v.size();i++){
| ~^~~~~~~~~
longesttrip.cpp:108:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
108 | for(int i=0;i<u.size();i++){
| ~^~~~~~~~~
longesttrip.cpp:48:9: warning: unused variable 'l0' [-Wunused-variable]
48 | int l0=0,r0=0,l1=1,r1=1;
| ^~
longesttrip.cpp:48:14: warning: unused variable 'r0' [-Wunused-variable]
48 | int l0=0,r0=0,l1=1,r1=1;
| ^~
longesttrip.cpp:48:19: warning: unused variable 'l1' [-Wunused-variable]
48 | int l0=0,r0=0,l1=1,r1=1;
| ^~
longesttrip.cpp:48:24: warning: unused variable 'r1' [-Wunused-variable]
48 | int l0=0,r0=0,l1=1,r1=1;
| ^~