이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//IN THE NAME OF GOD
#include<bits/stdc++.h>
#pragma GCC optimize("O2,unroll-loops")
#define endl '\n'
#define F first
#define S second
using namespace std;
typedef long long ll;
typedef long double dll;
const int N = 1e5+7;
int a[N];
vector<int> v;
int32_t main(){
ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
int n,k; cin >> n >> k;
for(int i=1; i<=n; i++) cin >> a[i];
sort(a+1,a+n+1);
for(int i=1; i<n; i++) v.push_back(a[i+1]-(a[i]+1));
sort(v.begin(),v.end());
int ans = a[n] + 1 - a[1];
for(int i=1; i<k; i++){
ans -= v.back();
v.pop_back();
}
cout << ans << endl;
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... |