0_0_38319750_12406.cpp:49:2: error: stray '#' in program
}#include <bits/stdc++.h>
^
0_0_38319750_12406.cpp:49:3: error: 'include' does not name a type
}#include <bits/stdc++.h>
^
0_0_38319750_12406.cpp:57:11: error: redefinition of 'const int INF'
const int INF = 0x3f3f3f3f; //int型的INF
^
0_0_38319750_12406.cpp:9:11: note: 'const int INF' previously defined here
const int INF = 0x3f3f3f3f; //int型的INF
^
0_0_38319750_12406.cpp:58:10: error: redefinition of 'const long long int llINF'
const ll llINF = 0x3f3f3f3f3f3f3f3f;//ll型的llINF
^
0_0_38319750_12406.cpp:10:10: note: 'const long long int llINF' previously defined here
const ll llINF = 0x3f3f3f3f3f3f3f3f;//ll型的llINF
^
0_0_38319750_12406.cpp:59:11: error: redefinition of 'const int N'
const int N = 110;
^
0_0_38319750_12406.cpp:11:11: note: 'const int N' previously defined here
const int N = 110;
^
0_0_38319750_12406.cpp:61:11: error: redefinition of 'int f [110][110]'
int f[N][N];
^
0_0_38319750_12406.cpp:13:5: note: 'int f [110][110]' previously declared here
int f[N][N];
^
0_0_38319750_12406.cpp:62:14: error: redefinition of 'bool vis [110][110]'
bool vis[N][N];
^
0_0_38319750_12406.cpp:14:6: note: 'bool vis [110][110]' previously declared here
bool vis[N][N];
^
0_0_38319750_12406.cpp:63:8: error: redefinition of 'int a [110]'
int a[N];
^
0_0_38319750_12406.cpp:15:5: note: 'int a [110]' previously declared here
int a[N];
^
0_0_38319750_12406.cpp: In function 'int main()':
0_0_38319750_12406.cpp:65:5: error: redefinition of 'int main()'
int main()
^
0_0_38319750_12406.cpp:17:5: note: 'int main()' previously defined here
int main()
^
|