QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#297713 | #2728. Boring Lectures | Camillus | 5 | 723ms | 78284kb | C++20 | 2.5kb | 2024-01-05 03:06:36 | 2024-01-05 03:06:36 |
Judging History
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;
set<tuple<int, int, int>, greater<>> b;
void build() {
b.clear();
auto a = st::a;
for (int i = 1; i < n; i++) {
int j = st::get(i + 1, i + k);
b.emplace(a[i] + a[j], i, j);
}
}
int calc() {
auto a = st::a;
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 = 10;
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);
auto a = st::a;
if (i != n) {
int j = st::get(i + 1, i + k);
b.emplace(a[i] + a[j], i, j);
}
if (i != 1) {
int j = st::get(i - k + 1, i);
b.emplace(a[i] + a[j], i, j);
}
if (aa % K == 0) {
build();
}
cout << calc() << '\n';
}
return 0;
}
详细
Subtask #1:
score: 5
Accepted
Test #1:
score: 5
Accepted
time: 3ms
memory: 13036kb
input:
2 2 0 1 2
output:
3
result:
ok single line: '3'
Test #2:
score: 0
Accepted
time: 410ms
memory: 78120kb
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: 652ms
memory: 78176kb
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: 723ms
memory: 78284kb
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
Time Limit Exceeded
Test #5:
score: 10
Accepted
time: 4ms
memory: 12176kb
input:
2 2 4 1 1 1 0 1 2 2 0 2 2
output:
2 1 3 2 4
result:
ok 5 lines
Test #6:
score: 0
Accepted
time: 3ms
memory: 13088kb
input:
5 3 5 0 0 0 0 0 1 1000000000 4 1000000000 5 1000000000 2 1000000000 3 1000000000
output:
0 1000000000 1000000000 2000000000 2000000000 2000000000
result:
ok 6 lines
Test #7:
score: -10
Time Limit Exceeded
input:
10000 10000 100000 374349923 956237632 89016068 274930735 636575865 996622180 567384943 165470118 166531237 463361360 170343106 28457543 677745506 824660775 145777 539850687 890543804 370155199 412308677 17415343 321817814 625891363 120755544 322791725 724927588 308380690 513051546 115415871 7617902...
output:
1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1999963687 1998880446 1998880446 1998880446 1998880446 1998880446 1998880446 1999939179 1999939179 1999939179 1999939179 1999939179 1999939179 199...
result:
Subtask #3:
score: 0
Skipped
Dependency #1:
100%
Accepted
Dependency #2:
0%