bridge.cpp: In function 'void solve()':
bridge.cpp:48:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for (int i = 0; i < v.size() / 2; i ++)
| ~~^~~~~~~~~~~~~~
bridge.cpp:48:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
48 | for (int i = 0; i < v.size() / 2; i ++)
| ^~~
bridge.cpp:50:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
50 | for (int i = v.size() / 2; i < v.size(); i ++)
| ^~~
bridge.cpp:50:38: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for (int i = v.size() / 2; i < v.size(); i ++)
| ~~^~~~~~~~~~