Problem | car |
---|---|
User | taqtru |
Submission Time | 2025-02-03 10:14:11 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
car.cpp: In function ‘int main()’:
car.cpp:24:18: error: expected ‘;’ before ‘if’
24 | que.pop()
| ^
| ;
25 |
26 | if(visited[cur])continue;
| ~~
car.cpp:27:9: error: ‘else’ without a previous ‘if’
27 | else visited[cur] = true;
| ^~~~
car.cpp:34:21: error: ‘neighbour’ was not declared in this scope; did you mean ‘neighbor’?
34 | dis[neighbour] = weight;
| ^~~~~~~~~
| neighbor
car.cpp:35:44: error: expected ‘;’ before ‘}’ token
35 | que.push({weight,neighbor})
| ^
| ;
36 | }
| ~