# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
198509 | quocnguyen1012 | Holding (COCI20_holding) | C++14 | 8 ms | 4216 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>
#define fi first
#define se second
#define mp make_pair
#define pb push_back
using namespace std;
typedef long long ll;
template<class T> inline bool chkmin(T & a, const T & val) {return val < a ? a = val, 1 : 0;}
template<class T> inline bool chkmax(T & a, const T & val) {return a < val ? a = val, 1 : 0;}
const int maxn = 105;
int fl[maxn][maxn][2505], fr[maxn][maxn][2505];
int N, L, R, K, a[maxn];
int sum[maxn];
signed main(void)
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
if (fopen("A.INP", "r")){
freopen("A.INP", "r", stdin);
freopen("A.OUT", "w", stdout);
}
cin >> N >> L >> R >> K;
K = min(K, N * N / 4);
for (int i = 1; i <= N; ++i){
cin >> a[i];
sum[i] = sum[i - 1] + a[i];
}
for (int i = 1; i < L; ++i){
for (int j = L; j <= R; ++j){
for (int cost = 0; cost <= K; ++cost){
chkmin(fl[i][j][cost], fl[i - 1][j][cost]);
chkmin(fr[i][j][cost], fl[i][j - 1][cost]);
if (j - i <= cost) chkmin(fl[i][j][cost], fl[i - 1][j - 1][cost - (j - i)] - a[j] + a[i]);
}
}
}
for (int i = N; i > R; --i){
for (int j = R; j >= L; --j){
for (int cost = 0; cost <= K; ++cost){
chkmin(fr[i][j][cost], fr[i + 1][j][cost]);
chkmin(fr[i][j][cost], fr[i][j + 1][cost]);
if (i - j <= cost) chkmin(fr[i][j][cost], fr[i + 1][j + 1][cost - (i - j)] - a[j] + a[i]);
}
}
}
int ret = 1e9;
for (int i = L - 1; i <= R; ++i){
for (int cost = 0; cost <= K; ++cost){
chkmin(ret, fl[L - 1][i][cost] + fr[R + 1][i + 1][K - cost]);
}
}
cout << ret + sum[R] - sum[L - 1] << '\n';
}
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... |