QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#104482#5098. 第一代图灵机bashkort0 586ms31476kbC++203.9kb2023-05-10 20:37:482023-05-10 20:37:50

Judging History

This is the latest submission verdict.

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-10 20:37:50]
  • Judged
  • Verdict: 0
  • Time: 586ms
  • Memory: 31476kb
  • [2023-05-10 20:37:48]
  • Submitted

answer

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

constexpr int N = 2e5 + 228;

ll pref[N];
int n;

namespace ST {
    struct Info {
        ll ans = 0;
        int mn = 0;
    };

    vector<Info> t;
    vector<ll> ansL;
    int sz = 1;

    ll vertexQuery(int x, int mn) {
        if (x >= sz) {
            if (x - sz >= n) {
                return 0;
            }
            return t[x].mn >= mn ? 0 : pref[mn] - pref[x - sz + 1];
        }

        if (t[x << 1 | 1].mn < mn) {
            return max(ansL[x], vertexQuery(x << 1 | 1, mn));
        } else {
            return vertexQuery(x << 1, mn);
        }
    }

    void pull(int x) {
        t[x].mn = min(t[x << 1].mn, t[x << 1 | 1].mn);
        ansL[x] = vertexQuery(x << 1, t[x << 1 | 1].mn);
        t[x].ans = max(ansL[x], t[x << 1 | 1].ans);
    }

    void init(int n, vector<int> nxt) {
        sz = 1 << __lg(n) + !!(n & (n - 1));
        t.assign(sz << 1, Info());
        ansL.assign(sz << 1, 0);

        for (int i = 0; i < n; ++i) {
            t[i + sz].mn = nxt[i];
            t[i + sz].ans = 0;
        }
        for (int i = sz - 1; i > 0; --i) {
            pull(i);
        }
    }

    vector<int> stk;

    void rangeQuery(int l, int r, int x, int lx = 0, int rx = sz) {
        if (l >= rx || lx >= r) {
            return;
        }
        if (l <= lx && rx <= r) {
            return stk.push_back(x);
        }
        int mid = lx + rx >> 1;
        rangeQuery(l, r, x << 1, lx, mid), rangeQuery(l, r, x << 1 | 1, mid, rx);
    }

    void modify(int x, int i) {
        t[x + sz].mn = i;
        t[x + sz].ans = 0;
        for (x += sz; x >>= 1;) {
            pull(x);
        }
    }

    vector<int> rangeQuery(int l, int r) {
        stk.clear();
        rangeQuery(l, r, 1, 0, sz);
        return stk;
    }
}

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

    int m, q;
    cin >> n >> m >> q;

    for (int i = 1; i <= n; ++i) {
        cin >> pref[i];
        pref[i] += pref[i - 1];
    }

    vector<int> c(n), nxt(n, n), last(m, -1);
    vector<set<int>> st(m);

    for (int i = 0; i < m; ++i) {
        st[i].insert(-1);
        st[i].insert(n);
    }

    for (int i = 0; i < n; ++i) {
        cin >> c[i];
        c[i] -= 1;
        st[c[i]].insert(i);

        if (last[c[i]] != -1) {
            nxt[last[c[i]]] = i;
        }
        last[c[i]] = i;
    }

    ST::init(n, nxt);

    auto modify = [&](int x, int to) {
        nxt[x] = to;
        ST::modify(x, to);
    };

    auto replace = [&](int x, int col) {
        if (c[x] == col) {
            return;
        }

        st[c[x]].erase(x);
        st[col].insert(x);

        int p = *prev(st[c[x]].lower_bound(x));
        int np = *prev(st[col].lower_bound(x));
        int nx = *st[col].upper_bound(x);
        int npx = *st[c[x]].upper_bound(p);

        if (p != -1) {
            modify(p, npx);
        }
        if (np != -1) {
            modify(np, x);
        }
        modify(x, nx);

        c[x] = col;
    };

    auto query = [&](int l, int r) { // [l, r)
        vector<int> stk = ST::rangeQuery(l, r);
        int mn = 1e9;
        ll ans = ST::vertexQuery(stk.back(), r);

        for (int k = stk.size() - 1; k >= 0; --k) {
            mn = min(mn, ST::t[stk[k]].mn);
            if (k > 0) {
                ans = max(ans, ST::vertexQuery(stk[k - 1], mn));
            }
        }

        if (mn >= l) {
            ans = max(ans, pref[mn] - pref[l]);
        }

        return ans;
    };

    while (q--) {
        int tp, a, b;
        cin >> tp >> a >> b;
        a -= 1, b -= 1;

        if (tp == 1) {
            cout << query(a, b + 1) << '\n';
        } else {
            replace(a, b);
        }
    }

    return 0;
}


詳細信息

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 5ms
memory: 3864kb

input:

5000 200 5000
2315 3433 1793 4621 4627 4561 289 4399 3822 2392 392 4581 2643 2441 4572 4649 2981 3094 4206 2057 761 2516 2849 3509 3033 658 4965 3316 3269 4284 4961 753 1187 2515 1377 1725 4743 4761 3823 3464 4859 989 2401 953 875 1481 2181 103 2067 2625 3296 4721 61 3843 1607 997 4385 1284 4299 441...

output:

188245
181330
119958
226380
1712649
374208
959314
206452
432921
212831
297160
181330
306642
1807014
109449
310551
94493
1356483
76546
373775
100567
100567
191680
589022
450249
118571
1463959
100567
156625
95724
87252
100567
118571
100567
100567
450097
252398
1019738
334327
153242
100567
527139
29716...

result:

wrong answer 1st lines differ - expected: '118571', found: '188245'

Subtask #2:

score: 0
Wrong Answer

Test #3:

score: 0
Wrong Answer
time: 586ms
memory: 28564kb

input:

200000 10 200000
55651 97298 108697 86619 60721 199951 10610 162267 154301 138848 39191 18605 101369 57073 34977 101576 71252 143401 89587 160521 166491 38442 150761 35579 25571 121311 38033 38483 144639 41401 179161 54872 157905 137601 46863 187656 171901 43715 41036 150741 69057 102031 130561 4772...

output:

1232419
1222519
1232419
1232419
1232419
1232419
1232419
1232419
2205654
1232419
1040511
1148070
1232419
1232419
1232419
1783792
1206368
1206368
1950984
2747898
1232419
1222519
1167757
1206368
2297862
1222519
1232419
1222519
1222519
1160928
7528513
1232419
1567846
1189403
1222519
1232419
2305626
1257...

result:

wrong answer 9th lines differ - expected: '1232419', found: '2205654'

Subtask #3:

score: 0
Wrong Answer

Test #5:

score: 0
Wrong Answer
time: 499ms
memory: 31476kb

input:

200000 20000 200000
30681 32496 35471 48191 159123 69792 120915 150673 187226 158493 36275 26856 107976 124777 145229 69745 183961 14497 144808 153612 185893 137681 66417 46802 19345 113322 168046 128149 191001 135433 13201 139214 59489 81178 42343 163158 110121 119201 97501 53079 158755 192241 1132...

output:

5551850332
2093364113
40542181
8382094016
620187760
77358137
355666537
3685589833
576965767
851878626
139071519
38874048
1524442063
78026983
357955092
1116537568
66415066
374639782
1164027256
50220862
2958679526
2022143120
465926309
1303718807
1666967545
2501265014
46702944
1319746596
1508190265
615...

result:

wrong answer 1st lines differ - expected: '46702944', found: '5551850332'

Subtask #4:

score: 0
Skipped

Dependency #1:

0%

Subtask #5:

score: 0
Skipped

Dependency #4:

0%