longesttrip.cpp: In function 'std::vector<int> longest_trip(int, int)':
longesttrip.cpp:29:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
29 | while(K.size()<N){
| ~~~~~~~~^~
longesttrip.cpp:30:55: error: 'i' was not declared in this scope
30 | if(are_connected(vector<int>(1,K[0]),vector<int>(1,i))){
| ^
longesttrip.cpp:39:1: warning: control reaches end of non-void function [-Wreturn-type]
39 | }
| ^