Submission #660432

#TimeUsernameProblemLanguageResultExecution timeMemory
660432mychecksedadUplifting Excursion (BOI22_vault)C++17
Compilation error
0 ms0 KiB
/* Author : Mychecksdead */ #include<bits/stdc++.h> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; using namespace std; typedef long long int ll; typedef long double ld; #define MOD (1000000000+7) #define MOD1 (998244353) #define PI 3.1415926535 #define pb push_back #define setp() cout << setprecision(15) #define all(x) x.begin(), x.end() #define debug(x) cerr << #x << " is " << x << '\n'; const int N = 1e6+100, F = 2147483646, K = 20; ll m, l, a[N], sum, ans, b[N][2]; // + and - parts int dp[700]; void solve(){ cin >> m >> l; for(int i = 0; i < 2*m+1; ++i) cin >> a[i]; sum = ans = 0; for(int i = 0; i < 2*m+1; ++i) sum += a[i] * (i - m), ans += a[i], b[i][0] = 0, b[i][1] = a[i]; if(sum == l){ cout << ans; return; } ll c; if(sum > l){ c = 2*m; while(sum > l && c >= 0){ if(c==m){ c--; continue; } if(sum - a[c] * (c - m) >= l) sum -= a[c] * (c - m), ans -= a[c], b[c][0] = a[c], b[c][1] = 0; else{ ll num = (sum - l + (c - m) - 1) / (c - m); ans -= num; sum -= num * (c - m); b[c][0] = num; b[c][1] = a[c] - num; break; } c--; } }else{ c = 0; while(sum < l && c <= 2*m){ if(c==m){ c++; continue; } if(sum - a[c] * (c - m) <= l) sum -= a[c] * (c - m), ans -= a[c], b[c][0] = a[c], b[c][1] = 0; else{ ll num = (sum - l) / (c - m); ans -= num; sum -= num * (c - m); b[c][0] = num; b[c][1] = a[c] - num; break; } c++; } } if(sum > l){ cout << "impossible"; return; } int M = 1000; int v = l - sum + M; for(int i = 0; i <= 2*M; ++i) dp[i] = MOD; dp[m] = 0; for(int i = 0; i <= 2*m; ++i){ if(i==m) continue; for(int j = 0; j <= 2*M; ++j){ for(int k = 0; k <= min(b[i][0], M); ++k){ int val = j + k * (i - m); if(val >= 0 && val <= 2*m){ dp[val] = min(dp[val], dp[j] - k); } } } for(int j = 2*m; j >= 0; --j){ for(int k = 0; k <= min(b[i][1], M); ++k){ int val = j - k * (i - m); if(val >= 0 && val <= 2*m){ dp[val] = min(dp[val], dp[j] + k); } } } } if(dp[v] == MOD) cout << "impossible"; else cout << ans - dp[v]; } int main(){ cin.tie(0); ios::sync_with_stdio(0); int T = 1, aa; // cin >> T;aa=T; while(T--){ // cout << "Case #" << aa-T << ": "; solve(); cout << '\n'; } return 0; }

Compilation message (stderr)

vault.cpp: In function 'void solve()':
vault.cpp:81:47: error: no matching function for call to 'min(ll&, int&)'
   81 |             for(int k = 0; k <= min(b[i][0], M); ++k){
      |                                               ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from vault.cpp:2:
/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:
vault.cpp:81:47: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   81 |             for(int k = 0; k <= min(b[i][0], M); ++k){
      |                                               ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from vault.cpp:2:
/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:
vault.cpp:81:47: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   81 |             for(int k = 0; k <= min(b[i][0], M); ++k){
      |                                               ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from vault.cpp:2:
/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:
vault.cpp:81:47: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   81 |             for(int k = 0; k <= min(b[i][0], M); ++k){
      |                                               ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from vault.cpp:2:
/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:
vault.cpp:81:47: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   81 |             for(int k = 0; k <= min(b[i][0], M); ++k){
      |                                               ^
vault.cpp:89:47: error: no matching function for call to 'min(ll&, int&)'
   89 |             for(int k = 0; k <= min(b[i][1], M); ++k){
      |                                               ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from vault.cpp:2:
/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:
vault.cpp:89:47: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   89 |             for(int k = 0; k <= min(b[i][1], M); ++k){
      |                                               ^
In file included from /usr/include/c++/10/bits/specfun.h:45,
                 from /usr/include/c++/10/cmath:1927,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:41,
                 from vault.cpp:2:
/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:
vault.cpp:89:47: note:   deduced conflicting types for parameter 'const _Tp' ('long long int' and 'int')
   89 |             for(int k = 0; k <= min(b[i][1], M); ++k){
      |                                               ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from vault.cpp:2:
/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:
vault.cpp:89:47: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   89 |             for(int k = 0; k <= min(b[i][1], M); ++k){
      |                                               ^
In file included from /usr/include/c++/10/algorithm:62,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:65,
                 from vault.cpp:2:
/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:
vault.cpp:89:47: note:   mismatched types 'std::initializer_list<_Tp>' and 'long long int'
   89 |             for(int k = 0; k <= min(b[i][1], M); ++k){
      |                                               ^
vault.cpp: In function 'int main()':
vault.cpp:106:16: warning: unused variable 'aa' [-Wunused-variable]
  106 |     int T = 1, aa;
      |                ^~