# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
644365 | vladislav11 | Stove (JOI18_stove) | C++14 | 1 ms | 324 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>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int n, k;
cin >> n >> k;
k--;
if ( n == 1 )
{
cout << 0;
return 0;
}
vector<int> t(n);
for ( auto& el : t )
cin >> el;
vector<int> a(n-1);
for ( int i=0; i<a.size(); i++ )
a[i] = t[i+1] - t[i] - 1;
sort( a.begin(), a.end(), greater<int>() );
int ans = t.back() - t[0] + 1;
for ( int i=0; i<a.size() && i<k; i++ )
ans -= a[i];
cout << ans;
return 0;
}
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... |