0_0_21654844_12543.cpp:44:11: error: redefinition of 'const int maxn'
const int maxn=100010;
^
0_0_21654844_12543.cpp:6:11: note: 'const int maxn' previously defined here
const int maxn=100010;
^
0_0_21654844_12543.cpp:45:11: error: redefinition of 'int a [100010]'
int a[maxn],s[maxn];
^
0_0_21654844_12543.cpp:7:5: note: 'int a [100010]' previously declared here
int a[maxn],s[maxn];
^
0_0_21654844_12543.cpp:45:19: error: redefinition of 'int s [100010]'
int a[maxn],s[maxn];
^
0_0_21654844_12543.cpp:7:13: note: 'int s [100010]' previously declared here
int a[maxn],s[maxn];
^
0_0_21654844_12543.cpp:46:13: error: redefinition of 'int vis [100010]'
int vis[maxn];
^
0_0_21654844_12543.cpp:8:5: note: 'int vis [100010]' previously declared here
int vis[maxn];
^
0_0_21654844_12543.cpp: In function 'int main()':
0_0_21654844_12543.cpp:47:5: error: redefinition of 'int main()'
int main()
^
0_0_21654844_12543.cpp:9:5: note: 'int main()' previously defined here
int main()
^
|