QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#364222#8242. V-Diagramucup-team1525#WA 359ms5968kbC++17985b2024-03-24 13:04:162024-03-24 13:04:19

Judging History

你现在查看的是最新测评结果

  • [2024-03-24 13:04:19]
  • 评测
  • 测评结果:WA
  • 用时:359ms
  • 内存:5968kb
  • [2024-03-24 13:04:16]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define double long double
const int N=3e5;
const double eps=1e-10;
int n;
double a[N+5];
double b[N+5];
bool check(double x){
    for(int i=1;i<=n;i++)
        b[i]=b[i-1]+a[i]-x;
    double mx=b[n],mn=0;
    for(int i=2;i<n;i++)
        if(a[i]<a[i-1]&&a[i]<a[i+1]){
            for(int j=1;j<i;j++)
                mn=min(mn,b[j]);
            for(int j=i+1;j<=n;j++)
                mx=max(mx,b[j]);
            // printf("%lf %lf\n",mx,mn);
            if(mx>mn+eps)
                return 1;
            return 0;
        }
    assert(0);
}
void solve(){
    long long ans=0;
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        scanf("%LF",&a[i]);
    double l=0,r=1e9;
    for (int i=1;i<=100;++i){
        double mid=(l+r)/2;
        if(check(mid)) l=mid;
        else r=mid;
    }
    printf("%.13LF\n",l);
}
int main(){
    int t; scanf("%d",&t);
    while(t--) solve();
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 5868kb

input:

2
4
8 2 7 10
6
9 6 5 3 4 8

output:

6.7499999999750
5.8333333333167

result:

ok 2 numbers

Test #2:

score: 0
Accepted
time: 359ms
memory: 5968kb

input:

100000
3
948511478 739365502 813471668
3
881046825 27458122 398507422
3
987554257 399092415 924260278
3
984128569 125199021 716360525
3
529589236 45783262 313507287
3
645443456 85994112 226010681
3
914820717 228360911 572267310
3
418958362 56703604 195276041
3
64461646 26764720 26995581
3
914535039 ...

output:

833782882.6666666666279
435670789.6666666666279
770302316.6666666666279
608562704.9999999999418
296293261.6666666666279
319149416.3333333332848
571816312.6666666666279
223646002.3333333332994
39407315.6666666666315
383253737.6666666666279
734363638.6666666666279
779975824.3333333332557
490276408.333...

result:

ok 100000 numbers

Test #3:

score: -100
Wrong Answer
time: 185ms
memory: 5964kb

input:

10000
4
194123849 79274911 191162487 570110764
86
957917218 915359202 914726017 873273226 867724859 867674150 809652204 805531383 745262007 743835491 727071232 714782071 645394643 639432679 594879540 587173904 583418126 560538589 518721836 469558994 427721766 411582333 404948350 402948978 357228675 ...

output:

280182720.6666666666279
538557639.9545454545296
495489050.3529411764466
537734928.6410256411182
472025965.6999999999825
546154003.1249999999418
543366581.5161290323013
254833443.1999999999680
447343683.3157894735632
502458665.3846153845661
564217787.3333333333139
479468115.1182795699278
469762036.65...

result:

wrong answer 1st numbers differ - expected: '258668002.7500000', found: '280182720.6666667', error = '0.0831750'