closing.cpp: In function 'int max_score(int, int, int, long long int, std::vector<int>, std::vector<int>, std::vector<int>)':
closing.cpp:34:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | while(cnt<clist.size()){
| ~~~^~~~~~~~~~~~~
closing.cpp:35:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | for(int i=0;i<adj[clist[cnt].first].size();i++){
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
closing.cpp:51:11: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
51 | while(cnt<clist.size()){
| ~~~^~~~~~~~~~~~~
closing.cpp:52:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | for(int i=0;i<adj[clist[cnt].first].size();i++){
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
closing.cpp:63:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
63 | for(int i=0;i<dist.size();i++){
| ~^~~~~~~~~~~~
closing.cpp:11:27: warning: control reaches end of non-void function [-Wreturn-type]
11 | vector <pair <int,int> > temp;
| ^~~~