QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#142076#4561. Catfish Farmbashkort#3 415ms25304kbC++173.2kb2023-08-18 13:48:532024-07-04 02:39:37

Judging History

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

  • [2024-07-04 02:39:37]
  • 评测
  • 测评结果:3
  • 用时:415ms
  • 内存:25304kb
  • [2023-08-18 13:48:53]
  • 提交

answer

#include "fish.h"
#include <bits/stdc++.h>

using namespace std;
using ll = long long;

constexpr ll inf = 3e18;

struct SegmentTree {
    vector<ll> t, tag;
    int sz = 1;

    void init(int n) {
        sz = 1 << __lg(n) + !!(n & (n - 1));
        t.assign(sz << 1, -3e18), tag.assign(sz << 1, -3e18);
    }

    void apply(int x, ll tg) {
        t[x] = max(t[x], tg);
        tag[x] = max(tag[x], tg);
    }

    void push(int x) {
        if (tag[x] > 0) {
            apply(x << 1, tag[x]);
            apply(x << 1 | 1, tag[x]);
            tag[x] = -3e18;
        }
    }

    void pull(int x) {
        t[x] = max(t[x << 1], t[x << 1 | 1]);
    }

    ll rangeMax(int l, int r, int x, int lx, int rx) {
        if (l >= rx || lx >= r) {
            return -3e18;
        }
        if (l <= lx && rx <= r) {
            return t[x];
        }
        int mid = lx + rx >> 1;
        push(x);
        return max(rangeMax(l, r, x << 1, lx, mid), rangeMax(l, r, x << 1 | 1, mid, rx));
    }

    ll rangeMax(int l, int r) {
        return rangeMax(l, r, 1, 0, sz);
    }

    void rangeApply(int l, int r, ll tg, int x, int lx, int rx) {
        if (l >= rx || lx >= r) {
            return;
        }
        if (l <= lx && rx <= r) {
            return apply(x, tg);
        }
        int mid = lx + rx >> 1;
        push(x);
        rangeApply(l, r, tg, x << 1, lx, mid);
        rangeApply(l, r, tg, x << 1 | 1, mid, rx);
        pull(x);
    }

    void rangeApply(int l, int r, ll tg) {
        rangeApply(l, r, tg, 1, 0, sz);
    }
};

long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y,
                      std::vector<int> W) {
    SegmentTree t[2];
    t[0].init(N + 1), t[1].init(N + 1);
    t[0].rangeApply(0, 1, 0), t[1].rangeApply(0, 1, 0);
    
    vector<vector<pair<int, int>>> adj(N + 3);
    for (int i = 0; i < M; ++i) {
        adj[X[i]].push_back({Y[i] + 1, W[i]});    
    }

    for (int x = 0; x <= N + 2; ++x) {
        sort(adj[x].begin(), adj[x].end());
        if (x > 0) {
            vector<ll> p{-inf};
            for (auto [y, add] : adj[x - 1]) {
                p.push_back(add + max(p.back(), t[0].rangeMax(0, y)));
            }
            int i = 0;
            for (auto [y, add] : adj[x - 1]) {
                t[0].rangeApply(y, N + 1, p[++i]);
            }
        }
        t[0].rangeApply(0, 1, t[1].rangeMax(0, 1));
        t[1].rangeApply(N, N + 1, t[0].rangeMax(N, N + 1));
        reverse(adj[x].begin(), adj[x].end());
        vector<ll> p{-inf};
        for (auto [y, add] : adj[x]) {
            p.push_back(add + max(p.back(), t[1].rangeMax(y, N + 1)));
        }
        int i = 0;
        for (auto [y, add] : adj[x]) {
            t[1].rangeApply(0, y, p[++i]);
        }
        // cout << "dp[0]: ";
        // for (int i = 0; i <= N; ++i) {
        //     cout << t[0].rangeMax(i, i + 1) << " ";
        // }
        // cout << endl;
        // cout << "dp[1]: ";
        // for (int i = 0; i <= N; ++i) {
        //     cout << t[1].rangeMax(i, i + 1) << " ";
        // }
        // cout << endl;
    }

    return max(t[0].rangeMax(0, N + 1), t[1].rangeMax(0, N + 1));
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 3
Accepted

Test #1:

score: 3
Accepted
time: 106ms
memory: 17860kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
90000 80699
0 10792 55091480
0 36762 389250726
0 79267 706445371
0 76952 290301137
0 13444 69711795
0 68980 66221400
0 1695 703252611
0 36628 632571604
0 87676 264578012
0 79496 397448339
0 57929 447544332
0 35453 355374818
0 62449 686423696
0 45614 667165709...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
40313272768926

result:

ok 3 lines

Test #2:

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

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
100000 100000
0 64777 995289349
0 71596 893436841
0 577 789941184
0 74238 421759180
0 93045 833843112
0 17349 236016162
0 70194 646518626
0 59769 662584325
0 45550 706340730
0 8007 454213805
0 5460 328535742
0 47262 672607739
0 91960 166922115
0 26216 5441740...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
49915093555295

result:

ok 3 lines

Test #3:

score: 0
Accepted
time: 43ms
memory: 13812kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
100000 1
0 0 10082010

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
10082010

result:

ok 3 lines

Test #4:

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

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
100000 1
0 99999 19122012

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
19122012

result:

ok 3 lines

Test #5:

score: 0
Accepted
time: 287ms
memory: 25052kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
100000 300000
94880 38243 268662731
31482 11260 116303310
31482 29385 147398833
85804 78816 165663896
85804 50892 232441179
85804 52149 500231552
31482 15077 912836767
94880 13332 204098181
85804 4048 862989578
31482 94135 432330909
85804 30398 552396632
3702...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
149814460735479

result:

ok 3 lines

Test #6:

score: 0
Accepted
time: 415ms
memory: 25304kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
100000 300000
66138 12864 1000000000
3750 4109 1000000000
42566 70555 1000000000
33020 72709 1000000000
57804 39219 1000000000
28208 65932 1000000000
13384 22179 1000000000
69976 69860 1000000000
82704 18635 1000000000
74094 31581 1000000000
95460 25871 10000...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
300000000000000

result:

ok 3 lines

Subtask #2:

score: 0
Wrong Answer

Test #7:

score: 6
Accepted
time: 0ms
memory: 4080kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
3 2
0 0 1
1 1 1

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
2

result:

ok 3 lines

Test #8:

score: -6
Wrong Answer
time: 177ms
memory: 20440kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
90000 161862
0 56823 293232472
0 28967 124369573
1 8799 138712011
0 87115 743135614
1 56429 262092699
0 61318 597172732
0 39127 477101342
1 44938 277680401
1 79037 997527330
1 88113 13289754
0 29715 35249311
0 50637 709319782
1 20760 845594381
1 80662 6299890...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
80901044391025

result:

wrong answer 3rd lines differ - expected: '40604614618209', found: '80901044391025'

Subtask #3:

score: 0
Wrong Answer

Test #20:

score: 9
Accepted
time: 47ms
memory: 13832kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
100000 1
0 0 10082010

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
10082010

result:

ok 3 lines

Test #21:

score: 0
Accepted
time: 42ms
memory: 13672kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
100000 1
99999 0 882019

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
882019

result:

ok 3 lines

Test #22:

score: -9
Wrong Answer
time: 79ms
memory: 16316kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
90000 53444
40538 0 933021958
22736 0 403565340
52395 0 535014365
46488 0 818102149
19082 0 825246110
7712 0 581240932
30019 0 143288209
16519 0 206714026
8855 0 737518859
44939 0 63482743
40524 0 963968043
2663 0 953447256
25511 0 762455895
10794 0 880225092...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
26722970331638

result:

wrong answer 3rd lines differ - expected: '21261825233649', found: '26722970331638'

Subtask #4:

score: 0
Wrong Answer

Test #28:

score: 14
Accepted
time: 0ms
memory: 3824kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
4 3
2 2 1
0 0 1
1 1 1

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
3

result:

ok 3 lines

Test #29:

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

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
8 7
5 5 1
4 4 1
6 6 1
3 3 1
0 0 1
2 2 1
1 1 1

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
7

result:

ok 3 lines

Test #30:

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

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
3 2
0 0 1
1 1 1

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
2

result:

ok 3 lines

Test #31:

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

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
3 2
2 0 1
1 1 1

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
2

result:

ok 3 lines

Test #32:

score: -14
Wrong Answer
time: 1ms
memory: 3892kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
150 600
79 2 983288470
11 0 322623476
136 0 774411048
24 2 816724362
21 2 719492379
33 3 892309581
47 0 473707335
31 2 781573473
138 2 82986686
75 1 126753954
20 1 54988783
121 1 691958594
20 0 545299878
96 0 637112704
108 1 558914127
74 2 517404335
94 1 7420...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
311850533155

result:

wrong answer 3rd lines differ - expected: '216624184325', found: '311850533155'

Subtask #5:

score: 0
Skipped

Dependency #4:

0%

Subtask #6:

score: 0
Skipped

Dependency #5:

0%

Subtask #7:

score: 0
Wrong Answer

Test #60:

score: 14
Accepted
time: 137ms
memory: 19252kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
100000 99999
31026 31026 1
42940 42940 1
69303 69303 1
90350 90350 1
77507 77507 1
87126 87126 1
17988 17988 1
5146 5146 1
63023 63023 1
27776 27776 1
6136 6136 1
82557 82557 1
24904 24904 1
21667 21667 1
67271 67271 1
80294 80294 1
81145 81145 1
47144 47144 ...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
99999

result:

ok 3 lines

Test #61:

score: -14
Wrong Answer
time: 93ms
memory: 12612kb

input:

f785163bfcb92ce6ac387bba5d2f29a0e0f37f19
50000 100000
43737 0 616909786
28149 1 83561192
31215 0 81425452
11831 1 127789871
33975 1 294422160
44409 1 920754334
44149 1 547214118
23078 0 749134931
39070 1 425147230
39398 1 49764337
49388 0 1922565
13827 0 24394607
45462 0 276157952
30584 0 435992379
...

output:

938f2698235a9ff1d1d91e23381b68bec7bed102
OK
49943314382825

result:

wrong answer 3rd lines differ - expected: '36454348383152', found: '49943314382825'

Subtask #8:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

0%