council.cpp:1:1: error: 'include' does not name a type
1 | include <bits/stdc++.h>
| ^~~~~~~
council.cpp:4:13: error: 'pair' does not name a type
4 | #define pii pair<int, int>
| ^~~~
council.cpp:12:1: note: in expansion of macro 'pii'
12 | pii dpb[(1 << 20)]; // {which level != 0, which level -1}
| ^~~
council.cpp: In function 'void PrecompDPB()':
council.cpp:48:4: error: 'dpb' was not declared in this scope; did you mean 'dpf'?
48 | dpb[conf] = {conf, conf};
| ^~~
| dpf
council.cpp:50:4: error: 'dpb' was not declared in this scope; did you mean 'dpf'?
50 | dpb[conf] = {conf, -1};
| ^~~
| dpf
council.cpp:52:4: error: 'dpb' was not declared in this scope; did you mean 'dpf'?
52 | dpb[conf] = {-1, -1};
| ^~~
| dpf
council.cpp:65:10: error: 'dpb' was not declared in this scope; did you mean 'dpf'?
65 | if (dpb[ncur].ff != -1) {
| ^~~
| dpf
council.cpp:89:10: error: 'dpb' was not declared in this scope; did you mean 'dpf'?
89 | if (dpb[ncur].ss != -1) {
| ^~~
| dpf
council.cpp: In function 'void st7()':
council.cpp:135:7: error: 'dpb' was not declared in this scope; did you mean 'dpf'?
135 | if (dpb[tar].ff != -1) {
| ^~~
| dpf
council.cpp:137:12: error: 'max' was not declared in this scope
137 | buff = max(buff, m - __builtin_popcount(dpb[tar].ff));
| ^~~
council.cpp:140:7: error: 'dpb' was not declared in this scope; did you mean 'dpf'?
140 | if (dpb[tar].ss != -1) {
| ^~~
| dpf
council.cpp:141:11: error: 'max' was not declared in this scope
141 | buff = max(buff, m - __builtin_popcount(dpb[tar].ss));
| ^~~
council.cpp:145:3: error: 'cout' was not declared in this scope
145 | cout << ans << endl;
| ^~~~
council.cpp:145:18: error: 'endl' was not declared in this scope
145 | cout << ans << endl;
| ^~~~
council.cpp: In function 'void st2()':
council.cpp:172:10: error: 'max' was not declared in this scope
172 | ans = max(ans, cur);
| ^~~
council.cpp:174:3: error: 'cout' was not declared in this scope
174 | cout << ans << endl;
| ^~~~
council.cpp:174:18: error: 'endl' was not declared in this scope
174 | cout << ans << endl;
| ^~~~
council.cpp: In function 'void solve()':
council.cpp:182:2: error: 'cin' was not declared in this scope
182 | cin >> n >> m;
| ^~~
council.cpp: At global scope:
council.cpp:201:1: error: 'int32_t' does not name a type
201 | int32_t main() {
| ^~~~~~~