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;
#define int long long
#define vt vector
#define nl " \n"
#define pb emplace_back
#define all(x) x.begin(), x.end()
template <class _F, class _S>
void chmin(_F &a, _S b) {
if(a > b) a = b;
}
template <class _F, class _S>
void chmax(_F &a, _S b) {
if(a < b) a = b;
}
void run_case() {
int n, k;
cin >> n >> k;
vt<int> t(n);
vt<int> a;
for(int i = 0; i < n; i++) {
cin >> t[i];
}
for(int i = 0; i + 1 < n; i++) {
a.pb(t[i + 1] - t[i]);
}
int ans = t[n - 1] - t[0] + 1;
sort(all(a), greater<>());
for(int i = 0; i < k - 1; i++) {
ans -= a[i] - 1;
}
cout << ans << nl;
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int tt = 1;
// cin >> tt;
for(int i = 0; i < tt; i++) {
run_case();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |