#include <iostream>
#include <fstream>
#include <vector>
#include <queue>
#include <utility>
#include <algorithm>
#include <cstring>
struct Operation {
int l, r, amt;
Operation():
l(0), r(0), amt(0) {}
Operation(int l, int r, int amt):
l(l), r(r), amt(amt) {}
};
struct ParallelBSQuery {
int color;
int l, r, m;
ParallelBSQuery():
color(0), l(0), r(0), m(0) {}
ParallelBSQuery(int color, int l, int r):
color(color), l(l), r(r), m((l+r)>>1) {}
};
int x, q, ops;
int color[300005];
int target[300005];
int ans[300005];
int64_t tree[1200005];
int lazy[1200005];
std::vector<Operation> operations;
std::vector<ParallelBSQuery> queries;
std::vector<int> owned_by[300005];
void push(int node, int l, int r) {
tree[node] += lazy[node];
if (l!=r) {
lazy[node<<1] += lazy[node];
lazy[node<<1|1] += lazy[node];
}
lazy[node] = 0;
}
void update(int node, int l, int r, int st, int fi, int val) {
push(node,l,r);
if (l>fi||r<st) {
return;
}
if (st<=l&&r<=fi) {
lazy[node] += val;
push(node,l,r);
return;
}
int m = (l+r)>>1;
update(node<<1,l,m,st,fi,val);
update(node<<1|1,m+1,r,st,fi,val);
tree[node] = tree[node<<1] + tree[node<<1|1];
}
int64_t query(int node, int l, int r, int st, int fi) {
push(node,l,r);
if (l>fi||r<st) {
return 0;
}
if (st<=l&&r<=fi) {
return tree[node];
}
int m = (l+r)>>1;
return query(node<<1,l,m,st,fi) + query(node<<1|1,m+1,r,st,fi);
}
int64_t get_sum(int color) {
int64_t ret = 0;
for (const auto& i : owned_by[color]) {
ret += query(1,1,x,i,i);
}
return ret;
}
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
std::cin >> q >> x;
for (int i = 1; i <= x; i++) {
std::cin >> color[i];
owned_by[color[i]].emplace_back(i);
}
for (int i = 1; i <= q; i++) {
std::cin >> target[i];
}
std::cin >> ops;
operations.reserve(ops);
for (int i = 0, l, r, amt; i < ops; i++) {
std::cin >> l >> r >> amt;
operations.emplace_back(l,r,amt);
}
for (int i = 0; i < q; i++) {
ans[i+1] = -1;
queries.emplace_back(i+1,0,ops-1);
}
for (int iterations = 0; iterations < 19; iterations++) {
memset(tree,0,sizeof(tree));
memset(lazy,0,sizeof(lazy));
std::sort(queries.begin(),queries.end(),[](const ParallelBSQuery& a, const ParallelBSQuery& b) {
return a.m < b.m;
});
int scanline = 0;
for (auto& [color, l, r, m] : queries) {
if (l>r) {
continue;
}
while (scanline<=m) {
auto [i, j, amt] = operations[scanline];
if (i>j) {
update(1,1,x,1,j,amt);
update(1,1,x,i,x,amt);
}
else {
update(1,1,x,i,j,amt);
}
++scanline;
}
int64_t cand = get_sum(color);
if (cand>=target[color]) {
ans[color] = m;
r = m-1;
}
else {
l = m+1;
}
m = (l+r)>>1;
}
}
for (int i = 1; i <= q; i++) {
if (ans[i]==-1) std::cout << "NIE\n";
else std::cout << ans[i]+1 << "\n";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
21592 KB |
Output is correct |
2 |
Correct |
18 ms |
21688 KB |
Output is correct |
3 |
Correct |
18 ms |
21596 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
21608 KB |
Output is correct |
2 |
Correct |
17 ms |
21596 KB |
Output is correct |
3 |
Correct |
18 ms |
21596 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
390 ms |
23640 KB |
Output is correct |
2 |
Correct |
464 ms |
24940 KB |
Output is correct |
3 |
Correct |
433 ms |
24292 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
417 ms |
24252 KB |
Output is correct |
2 |
Correct |
392 ms |
24276 KB |
Output is correct |
3 |
Correct |
421 ms |
24960 KB |
Output is correct |
4 |
Correct |
133 ms |
23256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
238 ms |
23816 KB |
Output is correct |
2 |
Correct |
356 ms |
25040 KB |
Output is correct |
3 |
Correct |
80 ms |
22616 KB |
Output is correct |
4 |
Correct |
406 ms |
24660 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
196 ms |
23640 KB |
Output is correct |
2 |
Correct |
371 ms |
24364 KB |
Output is correct |
3 |
Correct |
373 ms |
23644 KB |
Output is correct |
4 |
Correct |
440 ms |
25132 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3696 ms |
40832 KB |
Output is correct |
2 |
Incorrect |
1130 ms |
35416 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3723 ms |
40064 KB |
Output is correct |
2 |
Correct |
1348 ms |
33752 KB |
Output is correct |
3 |
Incorrect |
261 ms |
27408 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |