이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int mxN = (int)1e3+10;
int n;
double a[mxN], pr[mxN], dp[mxN][mxN];
const double INF = 1e18;
double chk(double L){
for(int i = 0; i <= n; i++){
for(int j = 0; j <= n; j++){
dp[i][j] = INF;
}
}
for(int i = 0; i < n; i++)
if(a[i]>=L) dp[i][i] = a[i];
for(int l = 2; l <= n; l++){
for(int i = 0; i+l-1 < n; i++){
int j = i+l-1;
if(pr[j+1]-pr[i] < L*(j-i+1)) continue;
dp[i][j] = (pr[j+1]-pr[i])/(j-i+1);
dp[i][j] = max(dp[i][j], min(dp[i+1][j],dp[i][j-1]));
}
}
return dp[0][n-1];
}
int main()
{
cin >> n;
for(int i = 0; i < n; i++) cin >> a[i];
sort(a,a+n); double ans = a[n-1]-a[0];
for(int i = 0; i < n; i++) pr[i+1] = pr[i]+a[i];
for(int i = 0; i < n; i++){
for(int j = i; j < n; j++){
double L = (pr[j+1]-pr[i])/(j-i+1);
ans = min(ans, chk(L)-L);
}
}
cout << fixed << setprecision(9) << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |