# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
164735 | quocnguyen1012 | Stove (JOI18_stove) | C++14 | 27 ms | 2296 KiB |
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>
#define fi first
#define se second
#define pb push_back
#define mp make_pair
using namespace std;
typedef long long ll;
signed main(void)
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
if (fopen("A.INP", "r")){
freopen("A.INP", "r", stdin);
freopen("A.OUT", "w", stdout);
}
int N, K;
cin >> N >> K;
--K;
vector<int> a(N), b;
for (int i=0; i<N; ++i){
cin >> a[i];
if (i){
b.pb(a[i]-a[i-1]-1);
}
}
sort(b.rbegin(), b.rend());
int res = a[N-1] - a[0] + 1;
for (int i=0; i<K; ++i){
res -= b[i];
}
cout << res << '\n';
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |