#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define INF 1000000000
int n, p, q;
vector<int> a;
int main(){
cin>>n>>p>>q;
a.assign(n + 1, 0);
for (int i = 1; i <= n; i++){
cin>>a[i];
}
sort(a.begin(), a.end());
if (n <= p + 1){
cout<<1;
return 0;
}
ll dp[n + 1][q + 1][p + 1];
for (int i = 0; i <= n; i++){
for (int j = 0; j <= p; j++){
for (int k = 0; k <= q; k++){
dp[i][j][k] = 0;
}
}
}
for (int i = 1; i <= n; i++){
for (int j = 0; j <= p; j++){
for (int k = 0; k <= q; k++){
dp[i][j][k] = INF;
for (int l = 0; l < i; l++){
ll dist = a[i] - a[l + 1] + 1;
ll bi = ceil((double)dist / (double)2);
if (j != 0){
dp[i][j][k] = min(max(dp[l][j - 1][k], dist), dp[i][j][k]);
}
if (k != 0){
dp[i][j][k] = min(max(dp[l][j][k - 1], bi), dp[i][j][k]);
}
}
}
}
}
cout<<dp[n][p][q];
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Runtime error |
125 ms |
262144 KB |
Execution killed with signal 9 |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
46 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Runtime error |
157 ms |
262144 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |