Problem party
User personjs
Submission Time 2025-02-17 14:34:09
Score 0
Max Time N/A
Max Memory N/A

Compile Error

party.cpp:12:1: error: expected initializer before ‘void’
12 | void dfs(int x) {
| ^~~~
party.cpp: In function ‘int main()’:
party.cpp:26:3: error: ‘adj’ was not declared in this scope
26 | adj[a].push_back(b);
| ^~~
party.cpp:29:2: error: ‘dfs’ was not declared in this scope
29 | dfs(1);
| ^~~
party.cpp:30:25: error: expected ‘;’ before ‘}’ token
30 | cout << n - seen.size()
| ^
| ;
31 | }
| ~