0_0_22032836_17554.cpp:21:1: error: 'bitset' does not name a type
bitset<101> bits[N];
^
0_0_22032836_17554.cpp: In function 'int solve(int, int, int, int)':
0_0_22032836_17554.cpp:25:34: error: 'bits' was not declared in this scope
for (int i = 1; i <= n; i++) bits[i].reset();
^
0_0_22032836_17554.cpp:28:9: error: 'bitset' was not declared in this scope
bitset<101> bit;
^
0_0_22032836_17554.cpp:28:21: error: 'bit' was not declared in this scope
bitset<101> bit;
^
0_0_22032836_17554.cpp:30:20: error: 'bits' was not declared in this scope
bit |= bits[j];
^
0_0_22032836_17554.cpp:34:25: error: 'bl' was not declared in this scope
bitset<101> bl = (bit << (101 - y)) >> (101 - y);
^
0_0_22032836_17554.cpp:41:25: error: 'br' was not declared in this scope
bitset<101> br = (bit << (y + 1)) >> (y + 1);
^
0_0_22032836_17554.cpp:51:9: error: 'bits' was not declared in this scope
bits[x].set(y);
^
|