//я так много думал, что опять попал
#include <bits/stdc++.h>
#define all(x) x.begin(),x.end()
#define pb push_back
#define ppb pop_back
#define pf push_front
#define ppf pop_front
#define f first
#define s second
#define left(v) v + v
#define right(v) v + v + 1
#define ub upper_bound
#define lb lower_bound
using namespace std;
typedef int ll;
typedef long long i64;
//17 SEVENTEEN
const long double Pi = acos(-1.0);
const ll dx[] = {0,0,1,-1};
const ll dy[] = {1,-1,0,0};
const ll N = (ll) 4e5 + 17;
const ll M = (ll) 5e3 + 69;
const ll inf = (ll) 1e14 + 3;
const ll mod = (ll) 1e9 + 7;
ll sq(ll x) { return x * x; }
ll zxc = 1, n, m, q, a[N];
i64 t[4 * N], x[N];
ll l[N], r[N];
ll p[N], cur[N], lw[N], hg[N];
vector<ll> v[N], vq[N];
void recalc(ll v) {
t[v] = t[left(v)] + t[right(v)];
}
i64 get(ll v, ll tl, ll tr, ll l, ll r) {
if(l <= tl && tr <= r) return t[v];
if(tr < l || r < tl) return 0;
ll tm = (tl + tr) / 2;
return get(left(v), tl, tm, l, r) + get(right(v), tm + 1, tr, l, r) + t[v];
}
void upd(ll v, ll tl, ll tr, ll ql, ll qr, ll val) {
if (tr < ql || qr < tl) return;
if (ql <= tl && tr <= qr) {
t[v] += val;
return;
}
int mid = (tl + tr) / 2;
upd(left(v), tl, mid, ql, qr, val);
upd(right(v), mid + 1, tr, ql, qr, val);
}
void solve() {
cin >> n >> m;
for(ll i = 1; i <= m; i++) {
cin >> p[i];
v[p[i]].pb(i);
}
for(ll i = 1; i <= n; i++) {
cin >> a[i];
}
cin >> q;
for(ll i = 1; i <= n; i++)
lw[i] = 1, hg[i] = q + 1;
for(ll i = 1; i <= q; i++) {
cin >> l[i] >> r[i] >> x[i];
}
ll ok = 1;
while(ok) {
ok = 0;
// cout << "OK\n";
memset(t, 0, sizeof(t));
for(ll i = 1; i <= n; i++) {
if(lw[i] != hg[i])
vq[(lw[i] + hg[i]) / 2].pb(i);
}
for(ll i = 1; i <= q; i++) {
if(l[i] <= r[i])
upd(1, 1, m, l[i], r[i], x[i]);
else upd(1, 1, m, l[i], m, x[i]), upd(1, 1, m, 1, r[i], x[i]);
for (auto id : vq[i]) {
ok = 1;
i64 sum = 0;
for(ll x : v[id]) {
sum += get(1, 1, m, x, x);
if (sum >= a[id]) break;
}
if(sum >= a[id]) hg[id] = i;
else lw[id] = i + 1;
}
vq[i].clear();
}
}
for(ll i = 1; i <= n; i++) {
cout << (lw[i] <= q ? to_string(lw[i]) : "NIE") << "\n";
}
}
int main(/*Уверенно*/) {
ios_base::sync_with_stdio(0);
cin.tie(0);
/*
freopen(".in", "r", stdin);
freopen(".out", "w", stdout);
*/
// cin >> zxc;
while(zxc--) {
solve();
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
38 ms |
31692 KB |
Output is correct |
2 |
Correct |
40 ms |
31796 KB |
Output is correct |
3 |
Correct |
32 ms |
31708 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
32 ms |
31712 KB |
Output is correct |
2 |
Correct |
38 ms |
31708 KB |
Output is correct |
3 |
Correct |
39 ms |
31756 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
336 ms |
33464 KB |
Output is correct |
2 |
Correct |
463 ms |
35296 KB |
Output is correct |
3 |
Correct |
477 ms |
35072 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
415 ms |
34448 KB |
Output is correct |
2 |
Correct |
433 ms |
34444 KB |
Output is correct |
3 |
Correct |
427 ms |
35456 KB |
Output is correct |
4 |
Correct |
169 ms |
33636 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
285 ms |
33800 KB |
Output is correct |
2 |
Correct |
351 ms |
36040 KB |
Output is correct |
3 |
Correct |
200 ms |
32480 KB |
Output is correct |
4 |
Correct |
416 ms |
35420 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
378 ms |
32968 KB |
Output is correct |
2 |
Correct |
343 ms |
34428 KB |
Output is correct |
3 |
Correct |
398 ms |
33348 KB |
Output is correct |
4 |
Correct |
437 ms |
36660 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4372 ms |
51016 KB |
Output is correct |
2 |
Correct |
1341 ms |
38848 KB |
Output is correct |
3 |
Correct |
896 ms |
35716 KB |
Output is correct |
4 |
Runtime error |
4544 ms |
65540 KB |
Execution killed with signal 9 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4082 ms |
49732 KB |
Output is correct |
2 |
Correct |
1101 ms |
38836 KB |
Output is correct |
3 |
Correct |
674 ms |
34936 KB |
Output is correct |
4 |
Runtime error |
3617 ms |
65540 KB |
Execution killed with signal 9 |