QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#825205#9778. Brotatoucup-team3519#WA 76ms12788kbC++171.8kb2024-12-21 17:42:562024-12-21 17:43:11

Judging History

This is the latest submission verdict.

  • [2024-12-21 17:43:11]
  • Judged
  • Verdict: WA
  • Time: 76ms
  • Memory: 12788kb
  • [2024-12-21 17:42:56]
  • Submitted

answer

#include <bits/stdc++.h>

using real = long double;
constexpr int MAXK = 100;

struct Poly {
    real fi, fn, c;
    Poly next(real p) const {
        Poly res;
        res.fi = fi * (1 - p);
        res.fn = fn * (1 - p) + p;
        res.c = c * (1 - p) + 1;
        return res;
    }
};

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int n, k;
    std::cin >> n >> k;

    k = std::min(k, MAXK);

    real p;
    std::cin >> p;

    std::vector<Poly> suf(n + 1);
    suf[0].fi = 1;
    for (int i = 1; i <= n; ++i) suf[i] = suf[i - 1].next(p);

    std::vector<real> f(n + 1);
    // suf[n].fn * fn + suf[n].c = fn
    f[n] = suf[n].c / (1 - suf[n].fn);
    for (int i = 1; i < n; ++i) {
        f[i] = (1 - p) * f[i - 1] + p * f[n] + 1;
    }

    for (int _ = 0; _ < k; ++_) {
        std::vector<real> g(f);

        std::vector<real> pre(n + 1);
        for (int i = 1; i <= n; ++i) {
            pre[i] = (1 - p) * pre[i - 1] + p * g[i] + 1;
        }

        auto check = [&](int x) -> real {
            // suf[n - x].fi * pre[x] + suf[n - x].fn + suf[n - x].c = fn
            auto s = suf[n - x];
            real fn = (s.fi * pre[x] + s.c) / (1 - s.fn);
            return fn;
        };

        int l = 0, r = n;
        while (l < r) {
            int mid1 = (l + r) / 2;
            int mid2 = mid1 + 1;
            if (check(mid1) < check(mid2)) r = mid1;
            else l = mid2;
        }

        std::copy(pre.begin(), pre.begin() + l + 1, f.begin());
        real fn = check(l);
        for (int i = l + 1; i <= n; ++i) {
            f[i] = (1 - p) * f[i - 1] + p * fn + 1;
        }
    }

    std::cout << std::fixed << std::setprecision(12);
    std::cout << f[n] << '\n';
}

详细

Test #1:

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

input:

5 0
0.5

output:

62.000000000000

result:

ok found '62.000000000', expected '62.000000000', error '0.000000000'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3784kb

input:

5 1
0.5

output:

47.000000000000

result:

ok found '47.000000000', expected '47.000000000', error '0.000000000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 4088kb

input:

10000 0
0.002

output:

247489700306.919230148196

result:

ok found '247489700306.919219971', expected '247489700298.253692627', error '0.000000000'

Test #4:

score: 0
Accepted
time: 7ms
memory: 12768kb

input:

100000 10
0.0002

output:

38767507134.425717841834

result:

ok found '38767507134.425720215', expected '38767507133.232215881', error '0.000000000'

Test #5:

score: 0
Accepted
time: 0ms
memory: 9476kb

input:

100000 0
0.0002

output:

2430683127369.957190513611

result:

ok found '2430683127369.957031250', expected '2430683127170.376953125', error '0.000000000'

Test #6:

score: 0
Accepted
time: 26ms
memory: 12716kb

input:

100000 20
0.0002

output:

801073272.250844233145

result:

ok found '801073272.250844240', expected '801073272.231680870', error '0.000000000'

Test #7:

score: 0
Accepted
time: 31ms
memory: 12708kb

input:

100000 40
0.0002

output:

478148.718435185924

result:

ok found '478148.718435186', expected '478148.718426307', error '0.000000000'

Test #8:

score: 0
Accepted
time: 0ms
memory: 12788kb

input:

99995 4
0.0001

output:

38976542.868176223790

result:

ok found '38976542.868176222', expected '38976542.868175834', error '0.000000000'

Test #9:

score: 0
Accepted
time: 7ms
memory: 12696kb

input:

99995 10
0.0001

output:

3549184.597712051382

result:

ok found '3549184.597712052', expected '3549184.597712017', error '0.000000000'

Test #10:

score: 0
Accepted
time: 15ms
memory: 12688kb

input:

99995 16
0.0001

output:

399507.470556745013

result:

ok found '399507.470556745', expected '399507.470556742', error '0.000000000'

Test #11:

score: 0
Accepted
time: 8ms
memory: 12636kb

input:

99990 8
0.0001

output:

7773463.947930795947

result:

ok found '7773463.947930796', expected '7773463.947930722', error '0.000000000'

Test #12:

score: 0
Accepted
time: 9ms
memory: 12664kb

input:

99990 10
0.0001

output:

3547428.945472329679

result:

ok found '3547428.945472330', expected '3547428.945472297', error '0.000000000'

Test #13:

score: 0
Accepted
time: 7ms
memory: 12780kb

input:

99990 12
0.0001

output:

1647102.020434410996

result:

ok found '1647102.020434411', expected '1647102.020434395', error '0.000000000'

Test #14:

score: 0
Accepted
time: 0ms
memory: 4800kb

input:

16664 1
0.0012

output:

257920044611.372922375798

result:

ok found '257920044611.372924805', expected '257920044630.860534668', error '0.000000000'

Test #15:

score: 0
Accepted
time: 5ms
memory: 4844kb

input:

16664 21
0.0012

output:

92190688.544679505590

result:

ok found '92190688.544679508', expected '92190688.544415027', error '0.000000000'

Test #16:

score: 0
Accepted
time: 9ms
memory: 4840kb

input:

16664 41
0.0012

output:

59865.091786082134

result:

ok found '59865.091786082', expected '59865.091785920', error '0.000000000'

Test #17:

score: 0
Accepted
time: 2ms
memory: 4876kb

input:

16659 5
0.0003

output:

63366.264406954772

result:

ok found '63366.264406955', expected '63366.264406955', error '0.000000000'

Test #18:

score: 0
Accepted
time: 0ms
memory: 4872kb

input:

16659 11
0.0003

output:

18120.911863542533

result:

ok found '18120.911863543', expected '18120.911863543', error '0.000000000'

Test #19:

score: 0
Accepted
time: 4ms
memory: 4928kb

input:

16659 17
0.0003

output:

16666.555451967406

result:

ok found '16666.555451967', expected '16666.555451967', error '0.000000000'

Test #20:

score: 0
Accepted
time: 3ms
memory: 4944kb

input:

16654 9
0.0001

output:

16656.079416575626

result:

ok found '16656.079416576', expected '16656.079416576', error '0.000000000'

Test #21:

score: 0
Accepted
time: 3ms
memory: 4828kb

input:

16654 11
0.0001

output:

16655.674122172401

result:

ok found '16655.674122172', expected '16655.674122172', error '0.000000000'

Test #22:

score: 0
Accepted
time: 0ms
memory: 4852kb

input:

16654 13
0.0001

output:

16655.665695362667

result:

ok found '16655.665695363', expected '16655.665695363', error '0.000000000'

Test #23:

score: 0
Accepted
time: 1ms
memory: 3912kb

input:

2774 2
0.0072

output:

28951389307.293960636482

result:

ok found '28951389307.293960571', expected '28951389306.987514496', error '0.000000000'

Test #24:

score: 0
Accepted
time: 1ms
memory: 4140kb

input:

2774 22
0.0072

output:

11312241.450633264037

result:

ok found '11312241.450633263', expected '11312241.450653942', error '0.000000000'

Test #25:

score: 0
Accepted
time: 1ms
memory: 4000kb

input:

2774 42
0.0072

output:

8222.415108498099

result:

ok found '8222.415108498', expected '8222.415108509', error '0.000000000'

Test #26:

score: 0
Accepted
time: 1ms
memory: 3904kb

input:

2769 6
0.0021

output:

13600.582355731612

result:

ok found '13600.582355732', expected '13600.582355732', error '0.000000000'

Test #27:

score: 0
Accepted
time: 1ms
memory: 4000kb

input:

2769 12
0.0021

output:

3239.549978211126

result:

ok found '3239.549978211', expected '3239.549978211', error '0.000000000'

Test #28:

score: 0
Accepted
time: 1ms
memory: 3900kb

input:

2769 18
0.0021

output:

2776.628194875240

result:

ok found '2776.628194875', expected '2776.628194875', error '0.000000000'

Test #29:

score: 0
Accepted
time: 1ms
memory: 3964kb

input:

2764 10
0.0007

output:

2765.987073955086

result:

ok found '2765.987073955', expected '2765.987073955', error '0.000000000'

Test #30:

score: 0
Accepted
time: 1ms
memory: 4056kb

input:

2764 12
0.0007

output:

2765.937362849972

result:

ok found '2765.937362850', expected '2765.937362850', error '0.000000000'

Test #31:

score: 0
Accepted
time: 1ms
memory: 4000kb

input:

2764 14
0.0007

output:

2765.936176703473

result:

ok found '2765.936176703', expected '2765.936176704', error '0.000000000'

Test #32:

score: 0
Accepted
time: 76ms
memory: 12696kb

input:

100000 1000000000
0.0001

output:

100010.001000100054

result:

ok found '100010.001000100', expected '100010.001000100', error '0.000000000'

Test #33:

score: 0
Accepted
time: 0ms
memory: 3872kb

input:

1 1000000000
0.5

output:

2.000000000000

result:

ok found '2.000000000', expected '2.000000000', error '0.000000000'

Test #34:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

50 50
0.25

output:

66.734187333705

result:

ok found '66.734187334', expected '66.734187334', error '0.000000000'

Test #35:

score: 0
Accepted
time: 0ms
memory: 3788kb

input:

40 100
0.5

output:

788.633123966272

result:

ok found '788.633123966', expected '788.633123966', error '0.000000000'

Test #36:

score: -100
Wrong Answer
time: 0ms
memory: 3928kb

input:

40 160
0.5

output:

788.633123966272

result:

wrong answer 1st numbers differ - expected: '80.0000003', found: '788.6331240', error = '8.8579140'