dreaming.cpp: In function 'void dfs(int, int, long long int)':
dreaming.cpp:19:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for(int i = 0; i < adj[u].size(); i++){
| ~~^~~~~~~~~~~~~~~
dreaming.cpp: In function 'void dfsd(int, int)':
dreaming.cpp:34:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | for(int i = 0; i < adj[u].size(); i++)
| ~~^~~~~~~~~~~~~~~
dreaming.cpp: In function 'int travelTime(int, int, int, int*, int*, int*)':
dreaming.cpp:49:25: error: expected primary-expression before 'long'
49 | adj[A[i]].pb(mp(B[i], long long(T[i])));
| ^~~~
dreaming.cpp:50:25: error: expected primary-expression before 'long'
50 | adj[B[i]].pb(mp(A[i], long long(T[i])));
| ^~~~