#include <bits/stdc++.h>
using namespace std;
int a[100005];
vector<int> v;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, k, ans;
cin >> n >> k;
for (int i=1; i<=n; i++)
cin >> a[i];
for (int i=1; i<n; i++)
v.push_back(a[i+1]-a[i]-1);
sort(v.begin(), v.end(), greater<int>());
ans=a[n]-a[1]+1;
for (int i=0; i<n-k; i++)
ans-=v[i];
cout << ans;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |