| Problem | mrt2 |
|---|---|
| User | dooweidde |
| Submission Time | 2025-11-26 20:07:08 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
mrt2.cpp:16:8: error: ‘ll’ was not declared in this scope
16 | vector<ll> dijkstra(vector<vector<pair<int,int>>>& adj, int source){
| ^~
mrt2.cpp:16:10: error: template argument 1 is invalid
16 | vector<ll> dijkstra(vector<vector<pair<int,int>>>& adj, int source){
| ^
mrt2.cpp:16:10: error: template argument 2 is invalid
mrt2.cpp: In function ‘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: invali