Problem | dijkstra |
---|---|
User | UNowen |
Submission Time | 2025-03-19 21:14:21 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
dijkstra.cpp: In function ‘int32_t main()’:
dijkstra.cpp:21:9: error: expected ‘;’ before ‘{’ token
21 | pq.push{(0,1});
| ^
| ;
dijkstra.cpp:21:5: error: statement cannot resolve address of overloaded function
21 | pq.push{(0,1});
| ~~~^~~~
dijkstra.cpp:21:15: error: expected primary-expression before ‘)’ token
21 | pq.push{(0,1});
| ^
dijkstra.cpp:27:18: error: ‘x’ was not declared in this scope
27 | for(auto v:adj[x]){
| ^
dijkstra.cpp:30:24: error: no matching function for call to ‘std::priority_queue<std::pair<int, int>, std::vector<std::pair<int, int> >, std::greater<std::pair<int, int> > >::push(<brace-enclosed initializer list>)’
30 | pq.push({dist[v],v});
| ^
In file included from /usr/include/c++/9/queue:64,
from /usr/include/x86_64-lin