sculpture.cpp:23:1: error: 'll' does not name a type; did you mean 'ln'?
23 | ll ps[N], dp[N][N];
| ^~
| ln
sculpture.cpp: In function 'void sub1()':
sculpture.cpp:26:3: error: 'll' was not declared in this scope; did you mean 'ln'?
26 | ll ans = inf;
| ^~
| ln
sculpture.cpp:31:7: error: expected ';' before 's'
31 | ll s = 0;
| ^~
| ;
sculpture.cpp:32:7: error: expected ';' before 'cur'
32 | ll cur = 0;
| ^~~~
| ;
sculpture.cpp:35:7: error: 's' was not declared in this scope
35 | s += y[i+1];
| ^
sculpture.cpp:37:9: error: 'cur' was not declared in this scope
37 | cur |= s;
| ^~~
sculpture.cpp:43:5: error: 'ans' was not declared in this scope; did you mean 'abs'?
43 | ans = min(ans, cur);
| ^~~
| abs
sculpture.cpp:43:20: error: 'cur' was not declared in this scope
43 | ans = min(ans, cur);
| ^~~
sculpture.cpp:45:11: error: 'ans' was not declared in this scope; did you mean 'abs'?
45 | cout << ans;
| ^~~
| abs
sculpture.cpp: In function 'int main()':
sculpture.cpp:51:46: error: 'ps' was not declared in this scope; did you mean 'pb'?
51 | for(int i = 1; i <= n; i++) cin >> y[i], ps[i] = ps[i-1] + y[i];
| ^~
| pb