Main.cpp:6:12: error: 'll' does not name a type; did you mean 'all'?
6 | using ll = ll;
| ^~
| all
Main.cpp:10:1: error: 'll' does not name a type; did you mean 'all'?
10 | ll n, k;
| ^~
| all
Main.cpp:12:1: error: 'll' does not name a type; did you mean 'all'?
12 | ll dp[352][352][352];
| ^~
| all
Main.cpp:13:1: error: 'll' does not name a type; did you mean 'all'?
13 | ll pref[352];
| ^~
| all
Main.cpp:15:1: error: 'll' does not name a type; did you mean 'all'?
15 | ll solve(ll l, ll r, ll m){
| ^~
| all
Main.cpp: In function 'int main()':
Main.cpp:42:20: error: 'n' was not declared in this scope; did you mean 'yn'?
42 | scanf("%d%d", &n, &k);
| ^
| yn
Main.cpp:42:24: error: 'k' was not declared in this scope
42 | scanf("%d%d", &n, &k);
| ^
Main.cpp:47:17: error: 'dp' was not declared in this scope; did you mean 'dup'?
47 | dp[i][j][k] = -1;
| ^~
| dup
Main.cpp:51:5: error: 'pref' was not declared in this scope
51 | pref[0] = (s[0] == 'C');
| ^~~~
Main.cpp:55:8: error: 'solve' was not declared in this scope
55 | if(solve(0, n-1, 0)){
| ^~~~~
Main.cpp:43:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
43 | scanf("%s", s);
| ~~~~~^~~~~~~~~