0_0_22079128_17430.cpp:1:1: error: 'LL' does not name a type
LL dp[maxn][15][5];
^
0_0_22079128_17430.cpp:2:1: error: 'LL' does not name a type
LL p[maxn];
^
0_0_22079128_17430.cpp:3:9: error: 'maxn' was not declared in this scope
int num[maxn];
^
0_0_22079128_17430.cpp: In function 'const int read()':
0_0_22079128_17430.cpp:6:23: error: 'getchar' was not declared in this scope
char ch = getchar();
^
0_0_22079128_17430.cpp: At global scope:
0_0_22079128_17430.cpp:12:1: error: 'LL' does not name a type
LL dfs(int pos, int status,int pre,int limit){
^
0_0_22079128_17430.cpp:44:1: error: 'LL' does not name a type
LL solve(char s[]){
^
0_0_22079128_17430.cpp: In function 'int main()':
0_0_22079128_17430.cpp:52:12: error: 'maxn' was not declared in this scope
char s[maxn];
^
0_0_22079128_17430.cpp:54:12: error: 'dp' was not declared in this scope
memset(dp, -1, sizeof(dp));
^
0_0_22079128_17430.cpp:54:30: error: 'memset' was not declared in this scope
memset(dp, -1, sizeof(dp));
^
0_0_22079128_17430.cpp:55:19: error: 'scanf' was not declared in this scope
scanf("%d", &t);
^
0_0_22079128_17430.cpp:57:21: error: 's' was not declared in this scope
scanf("%s", s);
^
0_0_22079128_17430.cpp:58:33: error: 'solve' was not declared in this scope
printf("%lld\n", solve(s) - 1);
^
0_0_22079128_17430.cpp:58:38: error: 'printf' was not declared in this scope
printf("%lld\n", solve(s) - 1);
^
|