0_0_30113758_13898.cpp:162:11: error: redefinition of 'const int maxn'
const int maxn=100000+5;
^
0_0_30113758_13898.cpp:8:11: note: 'const int maxn' previously defined here
const int maxn=100000+5;
^
0_0_30113758_13898.cpp:163:11: error: redefinition of 'const int inf'
const int inf=0x3f3f3f3f;
^
0_0_30113758_13898.cpp:9:11: note: 'const int inf' previously defined here
const int inf=0x3f3f3f3f;
^
0_0_30113758_13898.cpp:165:5: error: redefinition of 'int n'
int n,k;
^
0_0_30113758_13898.cpp:11:5: note: 'int n' previously declared here
int n,k;
^
0_0_30113758_13898.cpp:165:7: error: redefinition of 'int k'
int n,k;
^
0_0_30113758_13898.cpp:11:7: note: 'int k' previously declared here
int n,k;
^
0_0_30113758_13898.cpp:166:11: error: redefinition of 'int ans [25]'
int ans[25];
^
0_0_30113758_13898.cpp:13:5: note: 'int ans [25]' previously declared here
int ans[25];
^
0_0_30113758_13898.cpp:167:12: error: redefinition of 'int mark [25]'
int mark[25];
^
0_0_30113758_13898.cpp:14:5: note: 'int mark [25]' previously declared here
int mark[25];
^
0_0_30113758_13898.cpp: In function 'void dfs(int)':
0_0_30113758_13898.cpp:168:6: error: redefinition of 'void dfs(int)'
void dfs(int pos)
^
0_0_30113758_13898.cpp:58:6: note: 'void dfs(int)' previously defined here
void dfs(int pos)
^
0_0_30113758_13898.cpp:171:9: error: break statement not within loop or switch
break;
^
0_0_30113758_13898.cpp: In function 'int main()':
0_0_30113758_13898.cpp:214:5: error: redefinition of 'int main()'
int main()
^
0_0_30113758_13898.cpp:103:5: note: 'int main()' previously defined here
int main()
^
|