fish.cpp: In function 'int64_t solveMediumN(int32_t, int32_t, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:182:27: error: 'n' is not a constant expression
182 | std::array<int64_t, n + 1> dpIncr{}, dpDecr{}, nDpIncr{}, nDpDecr{};
| ^
fish.cpp:182:24: note: in template argument for type 'long unsigned int'
182 | std::array<int64_t, n + 1> dpIncr{}, dpDecr{}, nDpIncr{}, nDpDecr{};
| ~~^~~
fish.cpp:186:11: error: invalid types 'int[int32_t {aka int}]' for array subscript
186 | nDpIncr[k] = dpDecr[0];
| ^
fish.cpp:186:23: error: invalid types 'int[int]' for array subscript
186 | nDpIncr[k] = dpDecr[0];
| ^
fish.cpp:188:18: error: invalid types 'int[int32_t {aka int}]' for array subscript
188 | remax(nDpIncr[k], dpIncr[lastK] + getWRangeSum(lastK, k, j - 1));
| ^
fish.cpp:22:21: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:188:18: error: invalid types 'int[int32_t {aka int}]' for array subscript
188 | remax(nDpIncr[k], dpIncr[lastK] + getWRangeSum(lastK, k, j - 1));
| ^
fish.cpp:22:35: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:188:29: error: invalid types 'int[int32_t {aka int}]' for array subscript
188 | remax(nDpIncr[k], dpIncr[lastK] + getWRangeSum(lastK, k, j - 1));
| ^
fish.cpp:22:40: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:191:11: error: invalid types 'int[int32_t {aka int}]' for array subscript
191 | nDpDecr[k] = 0;
| ^
fish.cpp:193:18: error: invalid types 'int[int32_t {aka int}]' for array subscript
193 | remax(nDpDecr[k], dpDecr[lastK] + getWRangeSum(k, lastK, j));
| ^
fish.cpp:22:21: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:193:18: error: invalid types 'int[int32_t {aka int}]' for array subscript
193 | remax(nDpDecr[k], dpDecr[lastK] + getWRangeSum(k, lastK, j));
| ^
fish.cpp:22:35: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:193:29: error: invalid types 'int[int32_t {aka int}]' for array subscript
193 | remax(nDpDecr[k], dpDecr[lastK] + getWRangeSum(k, lastK, j));
| ^
fish.cpp:22:40: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:194:18: error: invalid types 'int[int32_t {aka int}]' for array subscript
194 | remax(nDpDecr[k], dpIncr[lastK] + getWRangeSum(k, lastK, j));
| ^
fish.cpp:22:21: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:194:18: error: invalid types 'int[int32_t {aka int}]' for array subscript
194 | remax(nDpDecr[k], dpIncr[lastK] + getWRangeSum(k, lastK, j));
| ^
fish.cpp:22:35: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:194:29: error: invalid types 'int[int32_t {aka int}]' for array subscript
194 | remax(nDpDecr[k], dpIncr[lastK] + getWRangeSum(k, lastK, j));
| ^
fish.cpp:22:40: note: in definition of macro 'remax'
22 | #define remax(a, b) a = std::max((a), (b));
| ^
fish.cpp:202:24: error: invalid types 'int[int]' for array subscript
202 | return std::max(dpIncr[0], dpDecr[0]);
| ^
fish.cpp:202:35: error: invalid types 'int[int]' for array subscript
202 | return std::max(dpIncr[0], dpDecr[0]);
| ^