fish.cpp: In function 'll max_weights(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:54:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
54 | if(t<V[i].size() && V[i][t].first==j) tt=V[i][t++].second;
| ~^~~~~~~~~~~~
fish.cpp:64:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | if(t<V[i].size() && V[i][t].first==j) tt=V[i][t++].second;
| ~^~~~~~~~~~~~
fish.cpp:72:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
72 | for(int j=0; j<=N; j++) printf("%lld ", dp1[i][j]); printf("\n");
| ^~~
fish.cpp:72:61: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
72 | for(int j=0; j<=N; j++) printf("%lld ", dp1[i][j]); printf("\n");
| ^~~~~~
fish.cpp:77:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
77 | for(int j=0; j<=N; j++) printf("%lld ", dp2[i][j]); printf("\n");
| ^~~
fish.cpp:77:61: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
77 | for(int j=0; j<=N; j++) printf("%lld ", dp2[i][j]); printf("\n");
| ^~~~~~