Problem dijkstra
User UNowen
Submission Time 2025-03-19 21:14:56
Score 0
Max Time N/A
Max Memory N/A

Compile Error

dijkstra.cpp: In function ‘int32_t main()’:
dijkstra.cpp:28:11: error: no match for ‘operator[]’ (operand types are ‘int [100005]’ and ‘std::pair<int, int>’)
28 | if(dist[v] > di+v.second){
| ^
dijkstra.cpp:29:9: error: no match for ‘operator[]’ (operand types are ‘int [100005]’ and ‘std::pair<int, int>’)
29 | dist[v]=di+v.second;
| ^
dijkstra.cpp:30:18: error: no match for ‘operator[]’ (operand types are ‘int [100005]’ and ‘std::pair<int, int>’)
30 | pq.push({dist[v],v});
| ^
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,