0_0_22105508_13577.cpp:89:10: error: redefinition of 'const LL maxsize'
const LL maxsize = 1e6 + 7;
^
0_0_22105508_13577.cpp:18:10: note: 'const LL maxsize' previously defined here
const LL maxsize = 1e6 + 7;
^
0_0_22105508_13577.cpp:90:10: error: redefinition of 'const LL INF'
const LL INF = 0x3f3f3f3f;
^
0_0_22105508_13577.cpp:19:10: note: 'const LL INF' previously defined here
const LL INF = 0x3f3f3f3f;
^
0_0_22105508_13577.cpp:91:14: error: redefinition of 'const double EXP'
const double EXP = 1e-8;
^
0_0_22105508_13577.cpp:20:14: note: 'const double EXP' previously defined here
const double EXP = 1e-8;
^
0_0_22105508_13577.cpp:93:10: error: redefinition of 'const LL mod'
const LL mod = 530600414;
^
0_0_22105508_13577.cpp:22:10: note: 'const LL mod' previously defined here
const LL mod = 530600414;
^
0_0_22105508_13577.cpp:95:14: error: redefinition of 'LL dp [1000007]'
LL dp[maxsize];
^
0_0_22105508_13577.cpp:24:4: note: 'LL dp [1000007]' previously declared here
LL dp[maxsize];
^
0_0_22105508_13577.cpp:96:15: error: redefinition of 'LL len [1000007]'
LL len[maxsize];
^
0_0_22105508_13577.cpp:25:4: note: 'LL len [1000007]' previously declared here
LL len[maxsize];
^
0_0_22105508_13577.cpp:97:13: error: redefinition of 'LL c [1000007]'
LL c[maxsize];
^
0_0_22105508_13577.cpp:26:4: note: 'LL c [1000007]' previously declared here
LL c[maxsize];
^
0_0_22105508_13577.cpp:98:15: error: redefinition of 'LL sum [1000007]'
LL sum[maxsize];//表示前缀长度
^
0_0_22105508_13577.cpp:27:4: note: 'LL sum [1000007]' previously declared here
LL sum[maxsize];//表示前缀长度
^
0_0_22105508_13577.cpp: In function 'void init()':
0_0_22105508_13577.cpp:101:6: error: redefinition of 'void init()'
void init()
^
0_0_22105508_13577.cpp:30:6: note: 'void init()' previously defined here
void init()
^
0_0_22105508_13577.cpp: In function 'int main()':
0_0_22105508_13577.cpp:119:5: error: redefinition of 'int main()'
int main()
^
0_0_22105508_13577.cpp:48:5: note: 'int main()' previously defined here
int main()
^
|