Submission #895127

# Submission time Handle Problem Language Result Execution time Memory
895127 2023-12-29T13:02:54 Z d4xn Rabbit Carrot (LMIO19_triusis) C++17
0 / 100
1 ms 600 KB
#include <bits/stdc++.h>
using namespace std;

const int N = 2e5+1, inf = INT_MAX;

int n, m, a[N], mx;
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];
    mx = max(mx, a[i]);
  }

  dp[0].clear();
  dp[0].resize(1);
  dp[0][0] = 0;
  for (int i = 1; i <= n; i++) {
    int x = min(mx, 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(mx, 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(mx, n*m); i++) {
    ans = min(ans, dp[n%2][i]);
  }
  cout << ans << "\n";
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -