QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#95842#5444. Tavern Chessreshke#AC ✓280ms3800kbC++142.2kb2023-04-12 01:35:502023-04-12 01:35:53

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-04-12 01:35:53]
  • 评测
  • 测评结果:AC
  • 用时:280ms
  • 内存:3800kb
  • [2023-04-12 01:35:50]
  • 提交

answer

#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>

#include "vector"

int len;
const int maxlen = 1e5 + 32;
using namespace std;

typedef long double ld;

ld alw;
ld bwn;

vector<int> at[2];
vector<int> hp[2];
vector<int> hitn[2];

int n, m;
void rec(ld initp, int who) {
    int hi = -1;
    auto n1 = n;
    if (who == 1) {
        n1 = m;
    }

    auto m1 = m;
    if (who == 1) {
        m1 = n;
    }

    for (int i = 0; i < n1; ++i) {
        if (hp[who][i] > 0 && (hi == -1 || hitn[who][i] < hitn[who][hi])) {
            hi = i;
        }
    }

    int cntou = 0;
    for (int j = 0; j < m1; ++j) {
        if (hp[1 - who][j] <= 0) continue;
        ++cntou;
    }

    if (cntou == 0 && hi == -1) {
        return;
    }

    if (cntou == 0) {
        if (who == 0) {
            alw += initp;
        } else {
            bwn += initp;
        }
        return;
    } else if (hi == -1) {
        if (who == 1) {
            alw += initp;
        } else {
            bwn += initp;
        }
        return;
    }

    for (int j = 0; j < m1; ++j) {
        if (hp[1 - who][j] <= 0) continue;
        hp[1 - who][j] -= at[who][hi];
        hp[who][hi] -= at[1 - who][j];
        hitn[who][hi]++;

        rec(initp * 1. / cntou, 1 - who);

        hp[1 - who][j] += at[who][hi];
        hp[who][hi] += at[1 - who][j];
        hitn[who][hi]--;
    }
}

void solve () {

    cout << fixed;

    cout.precision(20);


    cin >> n >> m;

    for (int i = 0; i < n; ++ i) {
        int curr;
        cin >> curr;
        hp[0].push_back(curr);
        at[0].push_back(curr);
        hitn[0].push_back(0);
    }


    for (int i = 0; i < m; ++ i) {
        int curr;
        cin >> curr;
        hp[1].push_back(curr);
        at[1].push_back(curr);
        hitn[1].push_back(0);
    }

    if (n > m) {
        rec(1, 0);
    } else if(n < m) {
        rec(1, 1);
    } else {
        rec(0.5, 0);
        rec(0.5, 1);
    }

    cout << alw << "\n" << bwn << "\n" << max(1 - alw - bwn, ld(0.)) << "\n";
}

int main() {
    std::cin.tie(0);
    std::cout.tie(0);
    std::ios_base::sync_with_stdio(false);

    solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3680kb

input:

2 3
2 5
3 4 1

output:

0.12500000000000000000
0.75000000000000000000
0.12500000000000000000

result:

ok 3 numbers

Test #2:

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

input:

6 6
1 1 4 5 1 4
1 1 4 5 1 4

output:

0.24186728395061728926
0.24186728395061728938
0.51626543209876542138

result:

ok 3 numbers

Test #3:

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

input:

7 7
1 1 1 1 1 1 1
1 1 1 1 1 1 1

output:

0.00000000000000000000
0.00000000000000000000
1.00000000000000000000

result:

ok 3 numbers

Test #4:

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

input:

1 7
7
1 1 1 1 1 1 1

output:

0.00000000000000000000
0.00000000000000000000
1.00000000000000000000

result:

ok 3 numbers

Test #5:

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

input:

2 3
736618938 652769331
328875880 97571721 44608905

output:

1.00000000000000000000
0.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #6:

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

input:

5 4
53585130 731696211 668322278 611205195 158818781
569587984 776042583 745745433 330119007

output:

0.06684027777777777777
0.66435185185185185156
0.26880787037037037068

result:

ok 3 numbers

Test #7:

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

input:

7 2
578505806 551611151 92903265 403642038 542119417 57334031 307573613
897644535 168524310

output:

0.99999999999999999967
0.00000000000000000000
0.00000000000000000033

result:

ok 3 numbers

Test #8:

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

input:

5 6
113196606 64768263 772808463 787707989 500151952
481840741 676847825 4641268 431386165 847736311 169677832

output:

0.13632317386831275761
0.52239718364197530774
0.34127964248971193466

result:

ok 3 numbers

Test #9:

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

input:

6 6
260666773 527612597 471926610 702232282 559007797 606173983
560573055 928117268 101411867 875949818 907478252 182117037

output:

0.00000000000000000000
0.96081957304526778753
0.03918042695473221247

result:

ok 3 numbers

Test #10:

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

input:

3 3
333377599 3066695 67916629
426841530 865184552 974638244

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #11:

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

input:

1 1
529429019
529428649

output:

1.00000000000000000000
0.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #12:

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

input:

3 3
12886596 817437415 465037461
12886473 817437448 465037967

output:

0.06944444444444444445
0.65277777777777777775
0.27777777777777777781

result:

ok 3 numbers

Test #13:

score: 0
Accepted
time: 10ms
memory: 3652kb

input:

6 6
211213374 319527017 257080158 176742665 53109345 33822515
53109265 319527076 176743175 257080012 211212799 33822353

output:

0.42339995927640612652
0.31938658479080931477
0.25721345593278455871

result:

ok 3 numbers

Test #14:

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

input:

1 2
1
1 1

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #15:

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

input:

1 2
1
1 3

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #16:

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

input:

1 2
2
4 2

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #17:

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

input:

1 2
3
5 5

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #18:

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

input:

1 2
4
1 2

output:

1.00000000000000000000
0.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #19:

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

input:

1 2
5
2 5

output:

0.00000000000000000000
0.00000000000000000000
1.00000000000000000000

result:

ok 3 numbers

Test #20:

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

input:

1 2
5
5 5

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #21:

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

input:

2 2
1 1
1 3

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #22:

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

input:

2 2
1 1
2 3

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #23:

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

input:

2 2
1 4
2 5

output:

0.00000000000000000000
0.50000000000000000000
0.50000000000000000000

result:

ok 3 numbers

Test #24:

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

input:

2 2
2 2
1 4

output:

0.00000000000000000000
0.00000000000000000000
1.00000000000000000000

result:

ok 3 numbers

Test #25:

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

input:

2 2
3 2
4 1

output:

0.00000000000000000000
0.50000000000000000000
0.50000000000000000000

result:

ok 3 numbers

Test #26:

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

input:

2 2
3 3
1 3

output:

1.00000000000000000000
0.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #27:

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

input:

2 2
3 3
2 4

output:

0.00000000000000000000
0.00000000000000000000
1.00000000000000000000

result:

ok 3 numbers

Test #28:

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

input:

2 2
3 3
5 3

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #29:

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

input:

2 2
4 3
2 1

output:

1.00000000000000000000
0.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #30:

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

input:

2 2
4 3
4 4

output:

0.00000000000000000000
1.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #31:

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

input:

2 2
5 1
5 2

output:

0.12500000000000000000
0.62500000000000000000
0.25000000000000000000

result:

ok 3 numbers

Test #32:

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

input:

2 2
5 1
5 3

output:

0.12500000000000000000
0.62500000000000000000
0.25000000000000000000

result:

ok 3 numbers

Test #33:

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

input:

2 2
5 2
2 3

output:

0.87500000000000000000
0.00000000000000000000
0.12500000000000000000

result:

ok 3 numbers

Test #34:

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

input:

2 2
5 4
1 2

output:

1.00000000000000000000
0.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #35:

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

input:

2 2
5 4
3 5

output:

0.87500000000000000000
0.00000000000000000000
0.12500000000000000000

result:

ok 3 numbers

Test #36:

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

input:

2 2
5 5
1 4

output:

1.00000000000000000000
0.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #37:

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

input:

2 2
5 5
2 2

output:

1.00000000000000000000
0.00000000000000000000
0.00000000000000000000

result:

ok 3 numbers

Test #38:

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

input:

1 1
6
6

output:

0.00000000000000000000
0.00000000000000000000
1.00000000000000000000

result:

ok 3 numbers

Test #39:

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

input:

5 5
6 5 9 9 3
3 5 9 9 6

output:

0.29787037037037037093
0.27877314814814814758
0.42335648148148148152

result:

ok 3 numbers

Test #40:

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

input:

6 6
10 2 3 4 5 7
5 2 4 3 10 7

output:

0.25401045685442388237
0.19277370541838134512
0.55321583772719477249

result:

ok 3 numbers

Test #41:

score: 0
Accepted
time: 44ms
memory: 3568kb

input:

7 7
7 6 8 6 7 3 9
7 6 9 8 7 3 6

output:

0.31091375142566948022
0.36576836791401960008
0.32331788066031091970

result:

ok 3 numbers

Test #42:

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

input:

6 6
5 4 7 9 9 10
9 4 9 7 5 10

output:

0.21694243505658436860
0.32785654578189299795
0.45520101916152263345

result:

ok 3 numbers

Test #43:

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

input:

4 4
9 7 10 6
9 7 6 10

output:

0.33087384259259259258
0.26229745370370370370
0.40682870370370370373

result:

ok 3 numbers

Test #44:

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

input:

3 3
3 10 3
3 10 3

output:

0.18750000000000000001
0.18750000000000000000
0.62500000000000000000

result:

ok 3 numbers

Test #45:

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

input:

2 2
3 4
3 4

output:

0.00000000000000000000
0.00000000000000000000
1.00000000000000000000

result:

ok 3 numbers

Test #46:

score: 0
Accepted
time: 78ms
memory: 3668kb

input:

7 7
922750124 99645786 685060385 948410807 266950246 996521461 883971852
266950246 99645786 883971852 685060385 922750124 996521461 948410807

output:

0.36335637141623643967
0.27956640551185729703
0.35707722307190626330

result:

ok 3 numbers

Test #47:

score: 0
Accepted
time: 111ms
memory: 3664kb

input:

7 7
241155912 361580213 393947982 781406405 485516551 277202028 115028196
485516551 361580213 115028196 393947982 241155912 277202028 781406405

output:

0.37017609359987184108
0.27878994530356410902
0.35103396109656404987

result:

ok 3 numbers

Test #48:

score: 0
Accepted
time: 68ms
memory: 3612kb

input:

7 7
565748008 734938287 873800405 879803305 473331973 893190834 623040014
473331973 734938287 623040014 873800405 565748008 893190834 879803305

output:

0.36430590801663653315
0.31560355422711782833
0.32009053775624563855

result:

ok 3 numbers

Test #49:

score: 0
Accepted
time: 154ms
memory: 3656kb

input:

7 7
14 4 6 5 201506030 15 15
4 14 201506030 15 15 6 5

output:

0.17818379165237736080
0.33708150986989427806
0.48473469847772836114

result:

ok 3 numbers

Test #50:

score: 0
Accepted
time: 93ms
memory: 3692kb

input:

7 7
3 2 3 5 784861968 2 1
2 3 784861968 1 2 3 5

output:

0.22307502187328733434
0.31615158023316157531
0.46077339789355109035

result:

ok 3 numbers

Test #51:

score: 0
Accepted
time: 240ms
memory: 3800kb

input:

7 7
8 15 3 9 168061718 2 5
15 8 168061718 5 2 3 9

output:

0.21296959598805244852
0.31996299506721355454
0.46706740894473399697

result:

ok 3 numbers

Test #52:

score: 0
Accepted
time: 89ms
memory: 3668kb

input:

7 7
859736717 19 19 18 13 10 7
7 10 13 18 19 19 859736717

output:

0.39362065259521410122
0.14796726625160094368
0.45841208115318495507

result:

ok 3 numbers

Test #53:

score: 0
Accepted
time: 117ms
memory: 3620kb

input:

7 7
761045932 18 13 11 9 7 6
6 7 9 11 13 18 761045932

output:

0.38246768955516738565
0.14749323865472664971
0.47003907179010596463

result:

ok 3 numbers

Test #54:

score: 0
Accepted
time: 135ms
memory: 3704kb

input:

7 7
379524878 17 16 14 10 6 1
1 6 10 14 16 17 379524878

output:

0.37926029329990439365
0.17653672207984276226
0.44420298462025284409

result:

ok 3 numbers

Test #55:

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

input:

7 7
986258805 329018732 16 14 10 10 4
4 10 10 14 16 329018732 986258805

output:

0.33520652350806710788
0.16822818648180079825
0.49656529001013209384

result:

ok 3 numbers

Test #56:

score: 0
Accepted
time: 133ms
memory: 3688kb

input:

7 7
402437510 39859989 20 20 18 17 7
7 17 18 20 20 39859989 402437510

output:

0.32869947364315153427
0.16026305826870617704
0.51103746808814228870

result:

ok 3 numbers

Test #57:

score: 0
Accepted
time: 168ms
memory: 3676kb

input:

7 7
719895666 88341845 15 11 10 6 5
5 6 10 11 15 88341845 719895666

output:

0.34154105876287219697
0.16943659666569733059
0.48902234457143047247

result:

ok 3 numbers

Test #58:

score: 0
Accepted
time: 231ms
memory: 3684kb

input:

7 7
22 657372492 8 20 531193761 10 21
8 22 20 657372492 531193761 21 10

output:

0.28303203585850888866
0.21433164140271825614
0.50263632273877285520

result:

ok 3 numbers

Test #59:

score: 0
Accepted
time: 280ms
memory: 3656kb

input:

7 7
8 559730577 2 23 543514141 3 24
2 8 23 559730577 543514141 24 3

output:

0.28368161658342670961
0.22201571344977786002
0.49430266996679543036

result:

ok 3 numbers

Test #60:

score: 0
Accepted
time: 193ms
memory: 3624kb

input:

7 7
24 416408320 4 25 698151361 24 15
4 24 25 416408320 698151361 15 24

output:

0.29751636844278498968
0.24728658696748354264
0.45519704458973146770

result:

ok 3 numbers