bosses.cpp:5:33: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+16' to '2147483647' [-Woverflow]
5 | const int N=2e5+5,mod=1e9+7,Inf=1e16;
| ^~~~
bosses.cpp: In function 'long long int dfs(int)':
bosses.cpp:13:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | for(int i=0;i<V_[u].size();i++){
| ~^~~~~~~~~~~~~
bosses.cpp: At global scope:
bosses.cpp:19:7: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
19 | main(){
| ^
bosses.cpp: In function 'int main()':
bosses.cpp:44:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for(int j=0;j<V[u].size();j++){
| ~^~~~~~~~~~~~