Problem | 4russians |
---|---|
User | hwy |
Submission Time | 2023-06-19 22:52:24 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
4russians.cpp:6:1: error: expected ‘,’ or ‘;’ before ‘vector’
6 | vector<int> C;
| ^~~~~~
4russians.cpp: In function ‘int dp(int, int, int)’:
4russians.cpp:22:12: error: ‘C’ was not declared in this scope
22 | return -(C[curr_bunker-1]*C[curr_bunker-2]);
| ^
4russians.cpp:25:30: error: ‘C’ was not declared in this scope
25 | bomb = S[curr_bunker-1] - (C[curr_bunker-1] * C[curr_bunker-2]);
| ^
4russians.cpp:34:18: error: ‘C’ was not declared in this scope
34 | nobomb = -(C[curr_bunker-1]*C[curr_bunker-2]);
| ^
4russians.cpp: In function ‘int main()’:
4russians.cpp:48:3: error: ‘C’ was not declared in this scope
48 | C.push_back(temp);
| ^