This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/*input
2 5
2 3 1 1 4
*/
#pragma GCC optimize ("O3")
#pragma GCC target("avx,avx2,fma")
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
template <typename T>
using oset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
mt19937_64 rng(0);
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int M;
ll L;
cin >> M >> L;
ll A_[2 * M + 1];
ll* A = A_ + M;
for (int i = -M; i <= M; i++)
cin >> A[i];
ll pl = 0;
pl += A[0];
A[0] = 0;
L = -L;
ll cnt = 0;
for (int l = -M; l <= M; l++)
{
L += l * A[l];
cnt += A[l];
}
map<ll, ll>D;
D[0] = 0;
ll del = M;
for (int v = M; v >= 1; v--)
for (int l : {v, -v})
{
if (l == 0)
continue;
map<ll, ll>D_;
for (pair<ll, ll>v : D)
{
ll k = (L - v.first) / l;
k = max(k, 0ll);
k = min(k, A[l]);
ll lo = max(0ll, k - del);
ll hi = min(k + del, A[l]);
if (v.first + k * l == L)
{
ll c_ = v.second + k;
auto it = D_.find(L);
if (it == D_.end())
D_[L] = c_;
else
it->second = min(it->second, c_);
}
else
for (ll c = lo; c <= hi; c++)
{
ll v_ = v.first + l * c;
ll c_ = v.second + c;
auto it = D_.find(v_);
if (it == D_.end())
D_[v_] = c_;
else
it->second = min(it->second, c_);
}
}
D = D_;
}
if (D.count(L))
cout << pl + cnt - D[L] << "\n";
else
cout << "impossible\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |