#include <bits/stdc++.h>
#define int long long
///#define pragma GCC optimise("O3")
using namespace std;
signed main()
{
int n, k; cin>>n>>k;
vector <int> dif;
int aux=0, all=0;
for (int i=1; i<=n; i++)
{
int a; cin>>a;
if (i>1) dif.push_back(a-aux);
if (i==1) all=a;
if (i==n) all=a+1-all;
aux=a+1;
}
sort(dif.begin(), dif.end(), greater<int>());
k--;
for (auto x:dif)
{
k--;
all-=x;
if (k==0) break;
}
cout<<all<<endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |