Submission #1101475

#TimeUsernameProblemLanguageResultExecution timeMemory
1101475nhutranK blocks (IZhO14_blocks)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #define ll long long #define str string #define is insert #define ed end() #define fi first #define se second #define bg begin() #define pb push_back #define vll vector <ll> #define mask(k) (1<<(k)) #define mll map <ll, ll> #define pll pair <ll, ll> #define ppl pair <ll, pll> using namespace std; ll n,k,i,j,pos,l,r,mid; int f[4005][4005],p; int a[400005]; int dp[4001][4001]; int b[4001][4001]; ll ans,m; ll get(ll l, ll r) { ll k=__lg(r-l+1); return (b[l][k]+b[r-mask(k)+1][k]); } int main() { cin>>n>>m; for (i=1; i<=n; i++) { cin>>a[i]; b[i][0]=a[i]; } for (j=1; mask(j)<=n; j++) for (i=1; i+mask(j)-1<=n; i++) b[i][j]=(b[i][j-1]+b[i+mask(j-1)][j-1]); memset(dp,0x3f,sizeof dp); dp[0][0]=0; for (i=1; i<=m; i++) for (j=1; j<=n; j++) { for (k=1; k<=j; k++) dp[i][j]=min(dp[i][j],dp[i-1][k-1]+get(k,j)); } cout<<dp[m][n]; return 0; }

Compilation message (stderr)

blocks.cpp: In function 'int main()':
blocks.cpp:47:60: error: no matching function for call to 'min(int&, long long int)'
   47 |                 dp[i][j]=min(dp[i][j],dp[i-1][k-1]+get(k,j));
      |                                                            ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from blocks.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:230:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::min(const _Tp&, const _Tp&)'
  230 |     min(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:230:5: note:   template argument deduction/substitution failed:
blocks.cpp:47:60: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'long long int')
   47 |                 dp[i][j]=min(dp[i][j],dp[i-1][k-1]+get(k,j));
      |                                                            ^
In file included from /usr/include/c++/10/bits/char_traits.h:39,
                 from /usr/include/c++/10/ios:40,
                 from /usr/include/c++/10/istream:38,
                 from /usr/include/c++/10/sstream:38,
                 from /usr/include/c++/10/complex:45,
                 from /usr/include/c++/10/ccomplex:39,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:54,
                 from blocks.cpp:1:
/usr/include/c++/10/bits/stl_algobase.h:278:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::min(const _Tp&, const _Tp&, _Compare)'
  278 |     min(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algobase.h:278:5: note:   template argument deduction/substitution failed:
blocks.cpp:47:60: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'long long int')
   47 |                 dp[i][j]=min(dp[i][j],dp[i-1][k-1]+get(k,j));
      |                                                            ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from blocks.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3468:5: note: candidate: 'template<class _Tp> constexpr _Tp std::min(std::initializer_list<_Tp>)'
 3468 |     min(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3468:5: note:   template argument deduction/substitution failed:
blocks.cpp:47:60: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
   47 |                 dp[i][j]=min(dp[i][j],dp[i-1][k-1]+get(k,j));
      |                                                            ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from blocks.cpp:1:
/usr/include/c++/10/bits/stl_algo.h:3474:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::min(std::initializer_list<_Tp>, _Compare)'
 3474 |     min(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/10/bits/stl_algo.h:3474:5: note:   template argument deduction/substitution failed:
blocks.cpp:47:60: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
   47 |                 dp[i][j]=min(dp[i][j],dp[i-1][k-1]+get(k,j));
      |                                                            ^