closing.cpp: In function 'int max_score(int, int, int, long long int, std::vector<int>, std::vector<int>, std::vector<int>)':
closing.cpp:38: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]
38 | while(cnt<clist.size()){
| ~~~^~~~~~~~~~~~~
closing.cpp:39: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]
39 | for(int i=0;i<adj[clist[cnt].first].size();i++){
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
closing.cpp:55: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]
55 | while(cnt<clist.size()){
| ~~~^~~~~~~~~~~~~
closing.cpp:56: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]
56 | for(int i=0;i<adj[clist[cnt].first].size();i++){
| ~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
closing.cpp:67:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
67 | for(int i=0;i<dist.size();i++){
| ~^~~~~~~~~~~~
closing.cpp:9:27: warning: control reaches end of non-void function [-Wreturn-type]
9 | vector <pair <int,int> > temp;
| ^~~~