| Problem | problematicjourney |
|---|---|
| User | j0ashhh |
| Submission Time | 2026-02-20 16:42:22 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
problematicjourney.cpp:4:31: error: template argument 1 is invalid
4 | vector<vector<pair<int, int>> adj;
| ^~~
problematicjourney.cpp:4:31: error: template argument 2 is invalid
problematicjourney.cpp: In function ‘bool canReach(int)’:
problematicjourney.cpp:13:21: error: ‘adj’ was not declared in this scope
13 | for(auto [v, w] : adj[u]){
| ^~~
problematicjourney.cpp:14:12: error: ‘X’ was not declared in this scope
14 | if(w <= X && dist[u]+1 < dist[v]){
| ^
problematicjourney.cpp: In function ‘int main()’:
problematicjourney.cpp:24:2: error: ‘adj’ was not declared in this scope
24 | adj.assign(N+1, vector<pair<int, int>>());
| ^~~