이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 2e5+1, inf = INT_MAX;
int n, m, a[N], pre[N];
vector<int> suf, dp[2];
signed main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
cin >> n >> m;
a[0] = 0;
for (int i = 1; i <= n; i++) {
cin >> a[i];
pre[i] = min(a[i], i ? pre[i-1] : inf);
}
dp[0].clear();
dp[0].resize(1);
dp[0][0] = 0;
for (int i = 1; i <= n; i++) {
int x = min(pre[i-1]+1, m*(i-1) + 1);
suf.clear();
suf.resize(x);
for (int j = x-1; j >= 0; j--) {
suf[j] = min(dp[(i-1)%2][j], (j+1 < x ? suf[j+1] : inf));
}
int y = min(pre[i]+1, m*i + 1);
dp[i%2].clear();
dp[i%2].resize(y);
for (int j = 0; j < y; j++) {
dp[i%2][j] = suf[max(0, j-m)] + (j != a[i]);
}
}
int ans = inf;
for (int i = 0; i <= min(pre[n], n*m); i++) {
ans = min(ans, dp[n%2][i]);
}
cout << ans << "\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... |