blocks.cpp: In function 'int main()':
blocks.cpp:43:2: error: 'Build' was not declared in this scope
43 | Build(1, 1, n);
| ^~~~~
blocks.cpp:54:82: error: no matching function for call to 'min(el&, ll)'
54 | dp[i][curk] = min(prev, Mn(1, 0, n, k - 1, prev.ind, i - 1) + a[i]);
| ^
In file included from /usr/include/c++/9/bits/char_traits.h:39,
from /usr/include/c++/9/ios:40,
from /usr/include/c++/9/ostream:38,
from /usr/include/c++/9/iostream:39,
from blocks.cpp:2:
/usr/include/c++/9/bits/stl_algobase.h:198:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)'
198 | min(const _Tp& __a, const _Tp& __b)
| ^~~
/usr/include/c++/9/bits/stl_algobase.h:198:5: note: template argument deduction/substitution failed:
blocks.cpp:54:82: note: deduced conflicting types for parameter 'const _Tp' ('el' and 'll' {aka 'long long int'})
54 | dp[i][curk] = min(prev, Mn(1, 0, n, k - 1, prev.ind, i - 1) + a[i]);
| ^
In file included from /usr/include/c++/9/bits/char_traits.h:39,
from /usr/include/c++/9/ios:40,
from /usr/include/c++/9/ostream:38,
from /usr/include/c++/9/iostream:39,
from blocks.cpp:2:
/usr/include/c++/9/bits/stl_algobase.h:246:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
246 | min(const _Tp& __a, const _Tp& __b, _Compare __comp)
| ^~~
/usr/include/c++/9/bits/stl_algobase.h:246:5: note: template argument deduction/substitution failed:
blocks.cpp:54:82: note: deduced conflicting types for parameter 'const _Tp' ('el' and 'll' {aka 'long long int'})
54 | dp[i][curk] = min(prev, Mn(1, 0, n, k - 1, prev.ind, i - 1) + a[i]);
| ^
In file included from /usr/include/c++/9/algorithm:62,
from blocks.cpp:3:
/usr/include/c++/9/bits/stl_algo.h:3444:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)'
3444 | min(initializer_list<_Tp> __l)
| ^~~
/usr/include/c++/9/bits/stl_algo.h:3444:5: note: template argument deduction/substitution failed:
blocks.cpp:54:82: note: 'el' is not derived from 'std::initializer_list<_Tp>'
54 | dp[i][curk] = min(prev, Mn(1, 0, n, k - 1, prev.ind, i - 1) + a[i]);
| ^
In file included from /usr/include/c++/9/algorithm:62,
from blocks.cpp:3:
/usr/include/c++/9/bits/stl_algo.h:3450:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)'
3450 | min(initializer_list<_Tp> __l, _Compare __comp)
| ^~~
/usr/include/c++/9/bits/stl_algo.h:3450:5: note: template argument deduction/substitution failed:
blocks.cpp:54:82: note: 'el' is not derived from 'std::initializer_list<_Tp>'
54 | dp[i][curk] = min(prev, Mn(1, 0, n, k - 1, prev.ind, i - 1) + a[i]);
| ^