# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
588646 | peuch | Uplifting Excursion (BOI22_vault) | C++17 | 2205 ms | 3000 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
const long long MAXN = 410;
const long long INF = 1e18;
const long long HALF = MAXN * MAXN / 2;
long long m;
long long l;
long long v[MAXN];
long long dp[2][MAXN * MAXN];
int main(){
scanf("%lld %lld", &m, &l);
long long sum = 0;
long long cnt = 0;
for(long long i = -m; i <= m; i++){
scanf("%lld", &v[i + m]);
sum += v[i + m] * i;
cnt += v[i + m];
}
if(l + HALF >= MAXN * MAXN || l + HALF < 0){
printf("impossible\n");
return 0;
}
for(long long j = 0; j < MAXN * MAXN; j++)
dp[1][j] = INF;
dp[1][HALF] = 0;
for(long long i = 0; i <= 2 * m; i++){
for(long long k = 0; k < v[i]; k++){
for(long long j = 0; j < MAXN * MAXN; j++)
dp[0][j] = dp[1][j];
for(long long j = 0; j < MAXN * MAXN; j++){
dp[1][j] = dp[0][j];
if(j - (i - m - 1) < MAXN * MAXN && j - (i - m) >= 0) dp[1][j] = min(dp[1][j], dp[0][j - (i - m)] + 1);
}
}
}
if(dp[1][sum - l + HALF] == INF) printf("impossible\n");
else printf("%lld\n", cnt - dp[1][sum - l + HALF]);
}
Compilation message (stderr)
# | 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... |