# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1003753 |
2024-06-20T16:49:14 Z |
codexistent |
Stove (JOI18_stove) |
C++14 |
|
0 ms |
344 KB |
#include <iostream>
#include <set>
#include <algorithm>
using namespace std;
#define MAXN 100005
#define FOR(i, a, b) for(int i = a; i <= b; i++)
int n, m, arr[MAXN];
int main(){
cin >> n >> m;
FOR(i, 1, n) cin >> arr[i];
sort(arr + 1, arr + 1 + n);
multiset<int> s;
FOR(i, 1, n - 1) s.insert(arr[i + 1] - arr[i] - 1);
int res = arr[n] - arr[1] + 1;
m = n - m;
while(s.size() && m){
res -= *(s.rbegin());
s.erase(s.find(*(s.rbegin())));
m--;
}
cout << res << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |