0_0_21844100_24654.cpp:8:1: error: 'bitset' does not name a type
bitset<MaxM> Right, Left;
^
0_0_21844100_24654.cpp: In function 'void solve()':
0_0_21844100_24654.cpp:34:17: error: 'Right' was not declared in this scope
Right |= (Right<<a[i]);
^
0_0_21844100_24654.cpp:35:17: error: 'Left' was not declared in this scope
Left |= (Left <<a[i]);
^
0_0_21844100_24654.cpp:44:29: error: 'Right' was not declared in this scope
if(k==0 || (k>0 && Right.test(k)) || (k<0 && Left.test(-k)) ) puts("yes");
^
0_0_21844100_24654.cpp:44:55: error: 'Left' was not declared in this scope
if(k==0 || (k>0 && Right.test(k)) || (k<0 && Left.test(-k)) ) puts("yes");
^
0_0_21844100_24654.cpp: In function 'int main()':
0_0_21844100_24654.cpp:74:11: error: 'read' was not declared in this scope
read(T);
^
0_0_21844100_24654.cpp:78:9: error: 'Left' was not declared in this scope
Left.reset();
^
0_0_21844100_24654.cpp:79:9: error: 'Right' was not declared in this scope
Right.reset();
^
|