0_0_22338352_471.cpp:88:14: error: redefinition of 'const double eps'
const double eps = 1e-6;
^
0_0_22338352_471.cpp:21:14: note: 'const double eps' previously defined here
const double eps = 1e-6;
^
0_0_22338352_471.cpp:89:11: error: redefinition of 'const int INF'
const int INF = 0x3f3f3f3f;
^
0_0_22338352_471.cpp:22:11: note: 'const int INF' previously defined here
const int INF = 0x3f3f3f3f;
^
0_0_22338352_471.cpp:90:11: error: redefinition of 'const int MAXN'
const int MAXN = 1e5 + 10;
^
0_0_22338352_471.cpp:23:11: note: 'const int MAXN' previously defined here
const int MAXN = 1e5 + 10;
^
0_0_22338352_471.cpp:91:11: error: redefinition of 'const int MAXM'
const int MAXM = 5e6 + 10;
^
0_0_22338352_471.cpp:24:11: note: 'const int MAXM' previously defined here
const int MAXM = 5e6 + 10;
^
0_0_22338352_471.cpp:93:11: error: redefinition of 'int a [100010]'
int a[MAXN];
^
0_0_22338352_471.cpp:26:5: note: 'int a [100010]' previously declared here
int a[MAXN];
^
0_0_22338352_471.cpp: In function 'int main()':
0_0_22338352_471.cpp:95:5: error: redefinition of 'int main()'
int main() {
^
0_0_22338352_471.cpp:28:5: note: 'int main()' previously defined here
int main() {
^
|