QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#297720#2728. Boring LecturesCamillus5 1083ms78280kbC++202.7kb2024-01-05 03:18:052024-01-05 03:18:06

Judging History

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

  • [2024-01-05 03:18:06]
  • 评测
  • 测评结果:5
  • 用时:1083ms
  • 内存:78280kb
  • [2024-01-05 03:18:05]
  • 提交

answer

/// @author Camillus <3
#ifndef LOCAL
#define debug(...) 42
#endif
#include "bits/stdc++.h"
using namespace std;

namespace st {
    static constexpr int size = 1 << 20;

    int a[size];
    int tree[size * 2 - 1];

    inline int comp(int i, int j) {
        if (a[i] > a[j]) {
            return i;
        } else {
            return j;
        }
    }

    void init() {
        for (int i = 0; i < size; i++) {
            int x = size + i - 1;
            tree[x] = i;
        }

        for (int x = size - 2; x >= 0; x--) {
            tree[x] = comp(tree[x * 2 + 1], tree[x * 2 + 2]);
        }
    }

    inline void set(int i, int v) {
        a[i] = v;

        int x = size + i - 1;

        while (x) {
            x = (x - 1) >> 1;
            tree[x] = comp(tree[x * 2 + 1], tree[x * 2 + 2]);
        }
    }

    int get(int l, int r, int x = 0, int lx = 0, int rx = size) {
        if (l >= rx || lx >= r) {
            return 0;
        }

        if (l <= lx && rx <= r) {
            return tree[x];
        }

        return comp(
            get(l, r, x * 2 + 1, lx, (lx + rx) / 2),
            get(l, r, x * 2 + 2, (lx + rx) / 2, rx)
        );
    }
} // namespace st

int n, k;
auto a = st::a;

set<tuple<int, int, int>, greater<>> b;

int get_left(int i) {
    return st::get(i - k + 1, i);
}

int get_right(int i) {
    return st::get(i - k + 1, i);
}

void add_rrr(int i) {
    if (i != n) {
        int j = get_right(i);
        b.emplace(a[i] + a[j], i, j);
    }

    if (i != 1) {
        int j = get_left(i);
        b.emplace(a[i] + a[j], i, j);
    }
}

void build() {
    b.clear();
    for (int i = 1; i <= n; i++) {
        add_rrr(i);
    }
}

int calc() {
    while (true) {
        auto [v, i, j] = *b.begin();
        if (v != a[i] + a[j]) {
            b.erase(b.begin());
            b.emplace(a[i] + a[j], i, j);
        } else {
            return v;
        }
    }
}

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

    st::init();

    int q;
    cin >> n >> k >> q;

    int K = 1000;
    auto a = st::a;

    for (int i = 1; i <= n; i++) {
        int v;
        cin >> v;

        st::set(i, v);
    }

    build();
    cout << calc() << '\n';

    for (int aa = 0; aa < q; aa++) {
        int i, v;
        cin >> i >> v;

        st::set(i, v);

        add_rrr(i);

        if (i != n) {
            int j = get_right(i);
            add_rrr(j);
        }

        if (i != 1) {
            int j = get_left(i);
            add_rrr(j);
        }

        // if (aa % K == 0) {
        //     build();
        // }

        cout << calc() << '\n';
    }
    return 0;
}

详细

Subtask #1:

score: 5
Accepted

Test #1:

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

input:

2 2 0
1 2

output:

3

result:

ok single line: '3'

Test #2:

score: 0
Accepted
time: 778ms
memory: 78280kb

input:

1000000 1000 0
500000 500000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

1000000

result:

ok single line: '1000000'

Test #3:

score: 0
Accepted
time: 1013ms
memory: 78216kb

input:

1000000 1000000 0
191355930 876987865 740762203 911573173 931027199 669083148 113485206 783567981 385726820 965631761 525660572 128531760 964137166 863177871 877233053 544438109 232015540 881663296 70146553 105212329 289639683 455161711 925929162 443009947 663470749 806524289 692823640 47064079 3937...

output:

1999997187

result:

ok single line: '1999997187'

Test #4:

score: 0
Accepted
time: 1083ms
memory: 78232kb

input:

1000000 1000 0
337169558 822795297 495342354 445458002 352974138 595967378 255683912 632668005 632403712 631080010 793258209 617835020 407863959 765546840 166847667 689855119 491829661 536156637 999860168 680191114 695227176 76498320 961778145 134881132 11031616 673250616 97820654 514929913 92811581...

output:

1999995708

result:

ok single line: '1999995708'

Subtask #2:

score: 0
Wrong Answer

Test #5:

score: 0
Wrong Answer
time: 4ms
memory: 12492kb

input:

2 2 4
1 1
1 0
1 2
2 0
2 2

output:

2
1
2
2
4

result:

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

Subtask #3:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

0%