Problem dijkstra
User haydendoo
Submission Time 2023-03-07 12:13:55
Score 0
Max Time N/A
Max Memory N/A

Compile Error

dijkstra.cpp: In function ‘int main()’:
dijkstra.cpp:28:16: error: continue statement not within a loop
28 | if(d>dis[x]) continue;
| ^~~~~~~~
dijkstra.cpp:29:12: error: break statement not within loop or switch
29 | if(x==end) break;
| ^~~~~