Problem knapsack
User LL
Submission Time 2026-02-16 17:15:07
Score 0
Max Time N/A
Max Memory N/A

Compile Error

knapsack.cpp: In function ‘void check(ll, ll)’:
knapsack.cpp:15:2: error: ‘v’ was not declared in this scope
15 | v = arr[opt[i] S] F F;
| ^
knapsack.cpp:15:10: error: ‘opt’ was not declared in this scope
15 | v = arr[opt[i] S] F F;
| ^~~
knapsack.cpp:16:2: error: ‘w’ was not declared in this scope
16 | w = arr[opt[i] S] F S;
| ^
knapsack.cpp:17:2: error: ‘k’ was not declared in this scope
17 | k = arr[opt[i] S] S;
| ^
knapsack.cpp: In function ‘int main()’:
knapsack.cpp:43:15: error: expected ‘;’ before ‘sort’
43 | arr[n] S = -1
| ^
| ;
44 |
45 | sort(opt, opt + n, greater<pll>());
| ~~~~