Problem | subgraphs |
---|---|
User | Logout |
Submission Time | 2023-11-10 15:14:47 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
subgraphs.cpp: In function ‘int main()’:
subgraphs.cpp:14:2: error: ‘dfs’ was not declared in this scope; did you mean ‘ffs’?
14 | dfs();
| ^~~
| ffs
subgraphs.cpp: In function ‘void dfs(int)’:
subgraphs.cpp:19:6: error: ‘visited’ was not declared in this scope
19 | if (visited[x]) return;
| ^~~~~~~
subgraphs.cpp:20:5: error: ‘visited’ was not declared in this scope
20 | visited[x] = true;
| ^~~~~~~
subgraphs.cpp:21:15: error: ‘adjlist’ was not declared in this scope
21 | for (auto i: adjlist[x]) {
| ^~~~~~~