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()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
long long n,k,ans = 0,a,b;
cin >> n >> k >> a;
ans = n;
vector<long long> haha(0);
for(long long i = 0; i < n-1; i++) {
cin >> b;
haha.push_back(b-a-1);
a = b;
}
sort(haha.begin(),haha.end());
for(long long i = 0; i < n-k; i++) {
ans+=haha[i];
}
cout << ans;
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... |