// watching.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <algorithm>
#include <iostream>
using namespace std;
int arr[2005];
int n, p, q;
int dp[2005][2];
bool check(int mid)
{
for (int i = 1; i <= n; i++)
{
for (int j = 0; j <= 1; j++)
{
dp[i][j] = 1000000000;
}
}
for (int c = 0; c <= p; c++)
{
for (int i = 1; i <= n; i++)
{
int j1 = i - 1;
while (j1 >= 1 && arr[i] - arr[j1] + 1 <= mid) j1--;
int j2 = j1;
while (j2 >= 1 && arr[i] - arr[j2] + 1 <= 2 * mid)j2--;
if (c > 0)dp[i][c&1] = min(dp[i][c&1], dp[j1][(c - 1)&1]);
dp[i][c&1] = min(dp[i][c&1], dp[j2][c&1] + 1);
}
}
return dp[n][p&1] <= q;
}
int main()
{
cin >> n >> p >> q;
for (int i = 1; i <= n; i++)
{
cin >> arr[i];
}
sort(arr + 1, arr + n + 1);
int l = 1, r = 1000000000;
while(l < r)
{
int mid = l + (r - l) / 2;
if (check(mid))
{
r = mid;
}
else
{
l = mid + 1;
}
//cout << l << " " << r << endl;
}
cout << r;
}
// 运行程序: Ctrl + F5 或调试 >“开始执行(不调试)”菜单
// 调试程序: F5 或调试 >“开始调试”菜单
// 入门使用技巧:
// 1. 使用解决方案资源管理器窗口添加/管理文件
// 2. 使用团队资源管理器窗口连接到源代码管理
// 3. 使用输出窗口查看生成输出和其他消息
// 4. 使用错误列表窗口查看错误
// 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目
// 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
1 ms |
364 KB |
Output is correct |
4 |
Execution timed out |
1081 ms |
364 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
99 ms |
492 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Execution timed out |
1063 ms |
364 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |