Problem | sealevel |
---|---|
User | CKCodeBreaker55 |
Submission Time | 2025-03-12 14:42:32 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
sealevel.cpp: In function ‘void dfs(long long int, long long int, long long int)’:
sealevel.cpp:12:37: error: ‘adjlist’ was not declared in this scope
12 | relativeheight -= relativeheight - adjlist[x].second;
| ^~~~~~~
sealevel.cpp:13:6: error: ‘vis’ was not declared in this scope
13 | if (vis[x]) return;
| ^~~
sealevel.cpp:14:2: error: ‘vis’ was not declared in this scope
14 | vis[x] = true;
| ^~~
sealevel.cpp:15:13: error: ‘adjList’ was not declared in this scope
15 | for (int i:adjList[x])
| ^~~~~~~
sealevel.cpp:17:30: error: expected ‘)’ before ‘;’ token
17 | dfs(i, goal, relativeheight;
| ~ ^
| )