dreaming.cpp:2:9: warning: missing terminating " character
2 | #include"dreaming.h
| ^
dreaming.cpp:2:9: error: #include expects "FILENAME" or <FILENAME>
2 | #include"dreaming.h
| ^~~~~~~~~~~
dreaming.cpp: In function 'int travelTime(int, int, int, int*, int*, int*)':
dreaming.cpp:35:20: error: 'm' was not declared in this scope
35 | for(int i=0; i<m; i++){
| ^
dreaming.cpp:40:20: error: 'm' was not declared in this scope
40 | for(int i=0; i<m; i++){
| ^
dreaming.cpp:43:13: error: 'u' was not declared in this scope
43 | u=dfs(i, i);
| ^
dreaming.cpp:48:39: error: expected primary-expression before ')' token
48 | sort(v.begin(), v.end(), greater<>);
| ^
dreaming.cpp: In function 'int dfs(int, int)':
dreaming.cpp:22:1: warning: control reaches end of non-void function [-Wreturn-type]
22 | }
| ^