#include <bits/stdc++.h>
#define fast cin.tie(0)->sync_with_stdio(0);
#define int long long
#define inf ((int)1e18)
using namespace std;
const int N = 300005;
vector <int> station[N];
int from[N], to[N], add[N], need[N], ans[N];
int point;
struct BIT {
int n;
vector <int> t;
void init(int size) {
n = size;
t.resize(n + 1);
}
void update(int till, int val) {
while(till) {
t[till] += val;
till = till - (till & (-till));
}
}
int query(int ind) {
int res = 0;
while(ind <= n) {
res += t[ind];
ind = ind + (ind & (-ind));
}
return res;
}
}t;
void f(int l, int r, vector<int>&owner) {
if(owner.empty()) return;
if(l == r) {
for(auto it:owner) {
ans[it] = l;
}
return;
}
int m = (l + r) / 2;
int ul, ur, val;
auto upd = [&]() {
t.update(ul-1, -val);
t.update(ur, val);
if(ur < ul) {
t.update(t.n, val);
}
};
while(point < m) {
point++;
ul = from[point], ur = to[point], val = add[point];
upd();
}
while(point > m) {
ul = from[point], ur = to[point], val = -add[point];
upd();
point--;
}
// now point is at m
vector <int> left, right;
for(int it : owner) {
int sum = 0;
for(int itt : station[it])
sum += t.query(itt);
if(sum >= need[it])
left.push_back(it);
else
right.push_back(it);
}
owner.clear();
f(l, m, left);
f(m + 1, r, right);
}
int32_t main() {
fast
int n, m;
cin >> n >> m;
for(int i = 0; i < m; i++) {
int in;
cin >> in;
station[in].push_back(i+1);
}
for(int i = 1; i <= n; i++) {
cin >> need[i];
}
int q;
cin >> q;
for(int i = 1; i <= q; i++) {
cin >> from[i] >> to[i] >> add[i];
}
vector <int> owner(n);
for(int i = 0; i < n; i++) owner[i] = i+1;
from[q+1] = 1, to[q+1] = m, add[q+1] = 0;
t.init(m);
f(1, q + 1, owner);
for(int i = 1; i <= n; i++) {
if(ans[i] > q) cout << "NIE\n";
else cout << ans[i] << "\n";
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
16984 KB |
Output is correct |
2 |
Correct |
4 ms |
16988 KB |
Output is correct |
3 |
Correct |
4 ms |
16988 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
16988 KB |
Output is correct |
2 |
Correct |
4 ms |
16988 KB |
Output is correct |
3 |
Correct |
4 ms |
16988 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
23 ms |
18768 KB |
Output is correct |
2 |
Correct |
48 ms |
23632 KB |
Output is correct |
3 |
Correct |
49 ms |
18612 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
18464 KB |
Output is correct |
2 |
Correct |
45 ms |
18424 KB |
Output is correct |
3 |
Correct |
46 ms |
22404 KB |
Output is correct |
4 |
Correct |
24 ms |
19292 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
26 ms |
18392 KB |
Output is correct |
2 |
Correct |
37 ms |
22564 KB |
Output is correct |
3 |
Correct |
14 ms |
16988 KB |
Output is correct |
4 |
Correct |
49 ms |
18824 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
30 ms |
17792 KB |
Output is correct |
2 |
Correct |
50 ms |
18704 KB |
Output is correct |
3 |
Correct |
30 ms |
18008 KB |
Output is correct |
4 |
Correct |
57 ms |
21872 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
344 ms |
37372 KB |
Output is correct |
2 |
Incorrect |
139 ms |
21852 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
357 ms |
34300 KB |
Output is correct |
2 |
Incorrect |
121 ms |
21800 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |