uzastopni.cpp:5:6: error: expected ';' before 'll'
5 | const ll N = 1e4 + 2;
| ^~~
| ;
uzastopni.cpp:6:1: error: 'll' does not name a type
6 | ll dp[N][104][104];
| ^~
uzastopni.cpp:7:1: error: 'll' does not name a type
7 | ll c[N];
| ^~
uzastopni.cpp:8:10: error: 'll' was not declared in this scope
8 | vector < ll > adj[N];
| ^~
uzastopni.cpp:8:13: error: template argument 1 is invalid
8 | vector < ll > adj[N];
| ^
uzastopni.cpp:8:13: error: template argument 2 is invalid
uzastopni.cpp:8:19: error: 'N' was not declared in this scope
8 | vector < ll > adj[N];
| ^
uzastopni.cpp:10:6: error: variable or field 'Go' declared void
10 | void Go(ll node, ll par) {
| ^~
uzastopni.cpp:10:9: error: 'll' was not declared in this scope
10 | void Go(ll node, ll par) {
| ^~
uzastopni.cpp:10:18: error: 'll' was not declared in this scope
10 | void Go(ll node, ll par) {
| ^~
uzastopni.cpp: In function 'int main()':
uzastopni.cpp:51:9: error: 'll' was not declared in this scope
51 | ll n, m, r, x, y, i, j, ans, t;
| ^~
uzastopni.cpp:53:16: error: 'n' was not declared in this scope; did you mean 'yn'?
53 | cin >> n;
| ^
| yn
uzastopni.cpp:54:14: error: 'i' was not declared in this scope
54 | for (i = 1; i <= n; i++) {
| ^
uzastopni.cpp:55:24: error: 'c' was not declared in this scope
55 | cin >> c[i];
| ^
uzastopni.cpp:58:14: error: 'i' was not declared in this scope
58 | for (i = 1; i < n; i ++) {
| ^
uzastopni.cpp:59:24: error: 'x' was not declared in this scope
59 | cin >> x >> y;
| ^
uzastopni.cpp:59:29: error: 'y' was not declared in this scope; did you mean 'yn'?
59 | cin >> x >> y;
| ^
| yn
uzastopni.cpp:60:17: error: 'adj' was not declared in this scope
60 | adj[x].push_back(y);
| ^~~
uzastopni.cpp:64:9: error: 'Go' was not declared in this scope
64 | Go(1, 1);
| ^~
uzastopni.cpp:65:9: error: 'ans' was not declared in this scope; did you mean 'abs'?
65 | ans = 0;
| ^~~
| abs
uzastopni.cpp:66:14: error: 'i' was not declared in this scope
66 | for (i = 1; i<= 100; i ++){
| ^
uzastopni.cpp:67:22: error: 'j' was not declared in this scope; did you mean 'jn'?
67 | for (j = i; j <= 100; j ++) {
| ^
| jn
uzastopni.cpp:68:32: error: 'dp' was not declared in this scope; did you mean 'dup'?
68 | ans += dp[1][i][j];
| ^~
| dup