QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#647320#8242. V-DiagramCalculatelove#AC ✓167ms7404kbC++141.1kb2024-10-17 13:21:482024-10-17 13:21:49

Judging History

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

  • [2024-10-17 13:21:49]
  • 评测
  • 测评结果:AC
  • 用时:167ms
  • 内存:7404kb
  • [2024-10-17 13:21:48]
  • 提交

answer

#include <bits/stdc++.h>

typedef long long s64;

const int N = 300100;

const double eps = 1e-11;
const s64 inf = 1e18;

int n;

int a[N];
double pre[N];

int p;

bool check(double mid) {
    for (int i = 1; i <= n; i ++)
        pre[i] = pre[i - 1] + a[i] - mid;

    double maxx = -inf, minn = inf;
    for (int i = 1; i < p; i ++)
        minn = std::min(minn, pre[i - 1]);

    for (int i = p + 1; i <= n; i ++)
        maxx = std::max(maxx, pre[i]);

    if (maxx - minn > 0)
        return 1;
    else
        return 0;
}

void work() {
    scanf("%d", &n);

    for (int i = 1; i <= n; i ++)
        scanf("%d", &a[i]);

    for (int i = 2; i < n; i ++)
        if (a[i - 1] > a[i] && a[i] < a[i + 1]) {
            p = i;
            break;
        }

    double l = 1, r = 1e9;
    for (int T = 100; T; T --) {
        double mid = (l + r) / 2;
        if (check(mid)) l = mid; else r = mid;
    }

    printf("%.9lf\n", l);
}

int main() {
    int T;
    scanf("%d", &T);

    while (T --)
        work();
    
    return 0;
}

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 5900kb

input:

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

output:

6.750000000
5.833333333

result:

ok 2 numbers

Test #2:

score: 0
Accepted
time: 167ms
memory: 5936kb

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.666666627
435670789.666666627
770302316.666666627
608562704.999999881
296293261.666666627
319149416.333333313
571816312.666666627
223646002.333333313
39407315.666666664
383253737.666666627
734363638.666666627
779975824.333333254
490276408.333333313
574448413.999999881
337980291.999999940
6...

result:

ok 100000 numbers

Test #3:

score: 0
Accepted
time: 96ms
memory: 5948kb

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:

258668002.749999970
527118856.755555570
495489050.352941155
525232841.150000095
472025965.699999928
546154003.124999881
543366581.516129136
254833443.199999958
428466450.049999893
502458665.384615302
564217787.333333254
479468115.118279696
466246020.204545319
570997279.666666627
537648134.285714269
...

result:

ok 10000 numbers

Test #4:

score: 0
Accepted
time: 125ms
memory: 3932kb

input:

1000
357
999039850 998470288 997001139 994662646 991895879 986310400 986201443 971759917 969292691 967648767 963962459 963603069 959189978 954532156 936459732 927268934 925199105 918559276 906725073 903024522 891346023 886340039 872105565 871168803 867996002 862017068 851751458 849013653 847967471 8...

output:

493655540.627450943
515292672.416666508
498032099.981481254
481127839.624999940
526924843.336283624
488725771.457192421
533287305.946428537
438471966.333333313
536630212.257575691
560617979.739725590
489475479.028171539
484316845.366197050
535619161.371428728
557358012.719101906
550404574.081480861
...

result:

ok 1000 numbers

Test #5:

score: 0
Accepted
time: 138ms
memory: 6080kb

input:

100
1152
999672457 998726401 995956848 990786177 990411263 984766135 983346495 982593760 982250360 980153123 975942408 974567443 973232196 970303426 967381747 966555245 966400114 965308448 961378668 960953166 960451796 957742285 957273419 956986267 956737190 956352393 954265694 953272327 952096100 9...

output:

504372755.029159009
495156421.177474916
511090599.621761262
497554816.124313295
514036973.345565736
509664056.912052155
500937804.963661194
515638734.543235719
500934821.109588563
518390767.739204407
504669526.958175600
501996849.059283197
504619908.646976471
505603904.384353638
500109676.745452821
...

result:

ok 100 numbers

Test #6:

score: 0
Accepted
time: 131ms
memory: 6572kb

input:

10
29043
999960631 999958134 999901247 999737433 999520614 999519045 999460207 999379140 999279078 999214335 999048733 998866618 998693991 998649435 998636721 998575997 998542938 998513617 998477418 998422985 998403836 998262102 998124856 998017139 998013085 997959891 997944356 997893923 997524695 9...

output:

497704976.046508789
500149119.648895204
499456770.182983339
500288732.702423096
505548409.832382143
502546060.651794374
500560614.163208008
502706676.399536133
500677023.496215820
505195094.970296800

result:

ok 10 numbers

Test #7:

score: 0
Accepted
time: 129ms
memory: 7404kb

input:

1
300000
999995409 999991717 999988340 999981078 999978323 999978096 999977575 999967796 999958049 999950023 999927083 999923421 999918905 999916153 999912740 999911175 999907902 999902376 999899096 999889548 999888902 999880881 999878324 999867494 999866296 999864006 999863565 999859765 999841183 9...

output:

499603654.397460878

result:

ok found '499603654.397460878', expected '499603654.397238612', error '0.000000000'

Extra Test:

score: 0
Extra Test Passed