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;
#define INF 0x3f3f3f3f
#define rep(i, m, n) for (int i = m; i <= n; i++)
#define per(i, m, n) for (int i = m; i >= n; i--)
#define sz(v) (int) v.size()
#define all(v) v.begin(), v.end()
#define ll long long
#define pb push_back
#define mp make_pair
#define fi first
#define se second
const int maxn = 2e6 + 5;
int N, D, T;
int t[maxn], a[maxn];
int main() {
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> N >> D >> T;
rep(i, 1, N) cin >> t[i];
a[1] = t[1];
rep(i, 2, N) a[i] = min(t[i], a[i - 1] + 1);
int ptr = 1, ans = 0;
vector<int> num;
while (ptr <= N) {
if (t[ptr] <= T) {
ptr++;
continue;
}
int j = ptr + 1, cnt = ((a[ptr] > T) ? 1 : 0);
while (j <= N && t[j] > T) {
if (a[j] > T) cnt++;
j++;
}
if (ptr == 1) ans += j - ptr - cnt;
else num.push_back(j - ptr - cnt);
ptr = j;
}
sort(all(num), greater<int>());
rep(i, 0, min(D - 1, sz(num) - 1)) ans += num[i];
rep(i, 1, N) if (a[i] > T) ans++;
cout << N - ans << endl;
return 0;
}
# | 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... |