# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
425750 | zoooma13 | The short shank; Redemption (BOI21_prison) | C++14 | 92 ms | 9028 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;
int main()
{
int n ,k ,T;
scanf("%d%d%d",&n,&k,&T);
vector <int> a(n);
for(int&i : a)
scanf("%d",&i);
int ans = 0;
vector <int> pp(n);
vector <pair<int ,int>> q;
for(int i = 0; i < n; i++){
while(!q.empty() && q.back().first > T-i)
q.pop_back();
if(a[i] <= T){
while(!q.empty() && q.back().first >= a[i]-i)
q.pop_back();
q.push_back({a[i]-i ,i});
}else if(!q.empty())
pp[q.back().second]++;
else
ans++;
}
sort(pp.rbegin() ,pp.rend());
for(int i = 0; i < k; i++)
ans += pp[i];
printf("%d\n",n-ans);
}
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... |