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 wynik = 0;
priority_queue<int> que;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, k, a, b;
cin >> n >> k;
for(int i = 0; i < n; i++){
cin >> a;
wynik++;
if(i > 0){
que.push(b + 1 - a);
}
b = a;
}
while(n > k){
n--;
wynik -= que.top();
que.pop();
}
cout << wynik;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |