0_0_33731654_20332.cpp:102:11: error: redefinition of 'const int N'
const int N = 100000 + 7, M = 200000 + 7; // 在 XOJ 上只有这样才能过
^
0_0_33731654_20332.cpp:101:11: note: 'const int N' previously defined here
const int N = 10000 + 7, M = 100000 + 7; // 正确但 RE-80
^
0_0_33731654_20332.cpp:102:27: error: redefinition of 'const int M'
const int N = 100000 + 7, M = 200000 + 7; // 在 XOJ 上只有这样才能过
^
0_0_33731654_20332.cpp:101:26: note: 'const int M' previously defined here
const int N = 10000 + 7, M = 100000 + 7; // 正确但 RE-80
^
|