Problem | badchef |
---|---|
User | Pyrros |
Submission Time | 2023-02-22 13:24:45 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
badchef.cpp: In function ‘int main()’:
badchef.cpp:30:65: error: expected ‘;’ before ‘}’ token
30 | dp[i][j] = min(dp[i-1][j], dp[i][j-v[i].first] + v[i].second)
| ^
| ;
31 | }else{
| ~