0_0_38128052_24583.cpp: In function 'bool check()':
0_0_38128052_24583.cpp:24:8: error: expected unqualified-id before '[' token
auto [x, y] = tmp[i];
^
0_0_38128052_24583.cpp:25:12: error: 'x' was not declared in this scope
if (!sum[x][y])return false;
^
0_0_38128052_24583.cpp:25:15: error: 'y' was not declared in this scope
if (!sum[x][y])return false;
^
0_0_38128052_24583.cpp: In function 'void init()':
0_0_38128052_24583.cpp:46:8: error: expected unqualified-id before '[' token
auto [x, y] = tmp[i];
^
0_0_38128052_24583.cpp:47:7: error: 'x' was not declared in this scope
sum[x][y] = 0;
^
0_0_38128052_24583.cpp:47:10: error: 'y' was not declared in this scope
sum[x][y] = 0;
^
0_0_38128052_24583.cpp: In function 'int main()':
0_0_38128052_24583.cpp:93:11: error: expected unqualified-id before '[' token
auto [x, y] = tmp[j];
^
0_0_38128052_24583.cpp:94:10: error: 'x' was not declared in this scope
sum[x][y]++;
^
0_0_38128052_24583.cpp:94:13: error: 'y' was not declared in this scope
sum[x][y]++;
^
0_0_38128052_24583.cpp:105:11: error: expected unqualified-id before '[' token
auto [x, y] = tmp[i];
^
0_0_38128052_24583.cpp:106:10: error: 'x' was not declared in this scope
sum[x][y]++;
^
0_0_38128052_24583.cpp:106:13: error: 'y' was not declared in this scope
sum[x][y]++;
^
|