이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define all(v) ((v).begin(),(v).end())
#define ll long long
using namespace std;
const ll mod = 1e9 + 7;
const ll mxN = 2e6 + 1;
ll a[mxN];
priority_queue<ll,vector<ll>,greater<ll>>q;
signed main()
{
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
ll n,k;
cin >>n>>k;
cin >>a[0];
for(ll i =1;i < n;i++){
cin >>a[i];
q.push(a[i] - a[i - 1]);
}
ll ans = n;
k = n - k;
while(k > 0){
ans += q.top();
ans--;
q.pop();
k--;
}
cout<<ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |