crocodile.cpp: In function 'void dfs(int)':
crocodile.cpp:24:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int i = 0; i < tree[n].size(); i++)
| ~~^~~~~~~~~~~~~~~~
crocodile.cpp:32:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for(int i = 0; i < temp.size(); i++)
| ~~^~~~~~~~~~~~~
crocodile.cpp:41:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
41 | for(int i = 0; i < temp.size(); i++)
| ~~^~~~~~~~~~~~~
crocodile.cpp:43:29: warning: 'minInd' may be used uninitialized in this function [-Wmaybe-uninitialized]
43 | if(curMin > temp[i] && i != minInd)
| ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~