#include <iostream>
#include <queue>
using namespace std;
int main()
{
int n, k;
cin >> n >> k;
int s = n;
int* t = new int[n];
for (int i = 0; i < n; i++)
{
cin >> t[i];
}
auto q = priority_queue<int>();
for (int i = 1; i < n; i++)
{
if (t[i - 1] != t[i] - 1)
{
q.push(t[i] - t[i - 1] - 1);
}
else
{
s--;
}
}
k--;
while (k > 0 && !q.empty())
{
q.pop();
k--;
}
while (!q.empty())
{
s += q.top();
q.pop();
}
cout << s << '\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |