| Problem | mrt2 |
|---|---|
| User | dooweidde |
| Submission Time | 2025-11-26 20:07:20 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
mrt2.cpp: In function ‘std::vector<long long int> dijkstra(std::vector<std::vector<std::pair<long long int, long long int> > >&, long long int)’:
mrt2.cpp:17:5: error: ‘ll’ was not declared in this scope
17 | ll N = adj.size();
| ^~
mrt2.cpp:19:14: error: template argument 2 is invalid
19 | vector<ll> dist;
| ^
mrt2.cpp:20:10: error: request for member ‘resize’ in ‘dist’, which is of non-class type ‘int’
20 | dist.resize(N, LLONG_MAX);
| ^~~~~~
mrt2.cpp:21:16: error: invalid types ‘int[long long int]’ for array subscript
21 | dist[source] = 0;
| ^
mrt2.cpp:23:20: error: ‘pll’ was not declared in this scope
23 | priority_queue<pll, vector<pll>, greater<pll>> pq;
| ^~~
mrt2.cpp:23:35: error: template argument 2 is invalid
23 | priority_queue<pll, vector<p