dreaming.cpp: In function 'void trav(long long int)':
dreaming.cpp:17:15: error: '__gnu_cxx::__alloc_traits<std::allocator<std::vector<long long int> >, std::vector<long long int> >::value_type' {aka 'class std::vector<long long int>'} has no member named 'pb'
17 | path[cnt].pb(node);
| ^~
dreaming.cpp:19:23: error: 'struct std::pair<long long int, long long int>' has no member named 'fi'
19 | if(!used[edge.fi]){
| ^~
dreaming.cpp:20:17: error: 'egde' was not declared in this scope; did you mean 'edge'?
20 | dfs(egde.fi);
| ^~~~
| edge
dreaming.cpp:20:13: error: 'dfs' was not declared in this scope; did you mean 'dis'?
20 | dfs(egde.fi);
| ^~~
| dis
dreaming.cpp: In function 'void dfs(long long int, long long int, long long int)':
dreaming.cpp:25:13: error: 'mx' was not declared in this scope
25 | if(we > mx){
| ^~
dreaming.cpp:30:17: error: 'struct std::pair<long long int, long long int>' has no member named 'fi'
30 | if(edge.fi != p){
| ^~
dreaming.cpp:31:22: error: 'struct std::pair<long long int, long long int>' has no member named 'fi'
31 | dfs(edge.fi, we + edge.se, node);
| ^~
dreaming.cpp:31:36: error: 'struct std::pair<long long int, long long int>' has no member named 'se'
31 | dfs(edge.fi, we + edge.se, node);
| ^~
dreaming.cpp: In function 'void caldis(long long int, long long int, long long int, long long int)':
dreaming.cpp:38:17: error: 'struct std::pair<long long int, long long int>' has no member named 'fi'
38 | if(edge.fi != p){
| ^~
dreaming.cpp:39:22: error: 'struct std::pair<long long int, long long int>' has no member named 'fi'
39 | dfs(edge.fi);
| ^~
dreaming.cpp: In function 'int travelTime(int, int, int, int*, int*, int*)':
dreaming.cpp:46:19: error: 'class std::vector<std::pair<long long int, long long int> >' has no member named 'pb'
46 | adj[A[i]].pb({B[i], T[i]});
| ^~
dreaming.cpp:47:19: error: 'class std::vector<std::pair<long long int, long long int> >' has no member named 'pb'
47 | adj[B[i]].pb({A[i], T[i]});
| ^~
dreaming.cpp:52:18: error: 'class std::vector<std::vector<long long int> >' has no member named 'pb'
52 | path.pb(vl(0));
| ^~
dreaming.cpp:57:15: error: 'c' was not declared in this scope
57 | for(i=0;i<c;i++){
| ^
dreaming.cpp:62:15: error: too few arguments to function 'void dfs(long long int, long long int, long long int)'
62 | dfs(v1);
| ^
dreaming.cpp:24:6: note: declared here
24 | void dfs(ll node, ll we, ll p){
| ^~~
dreaming.cpp:44:25: warning: unused variable 'j' [-Wunused-variable]
44 | ll n = N, m = M, i, j, mx, ans = 0;
| ^