//çalışan kazanır//
#include "bits/stdc++.h"
using namespace std;
//#define int long long
#define pb push_back
#define S second
#define F first
#define all(x) x.begin(),x.end()
#define YOSIK() ios_base::sync_with_stdio(0),cin.tie(0)
int gcd (int a, int b) {if (b == 0){return a;}else {return gcd (b, a % b);}}
const int N = 3e5 + 5;
const int INF = 2e18 + 1;
const int MOD = 1e9 + 7;
const int MODD = 1070234587ll;
const double eps = 0.0001;
//const int p = 87;
int n, m, o[N], p[N], q, l[N], r[N], a[N], ans[N];
pair <int, int> brd[N];
vector <int> pos[N], MID[N];
long long t[N*4], mod[N*4];
void upd (int v, int tl, int tr, int l, int r, int val) {
if (tr < l || r < tl) return;
if (l <= tl && tr <= r) {
t[v] += val;
return;
}
int mid = (tl + tr) >> 1;
upd (v + v, tl, mid, l, r, val), upd (v + v + 1, mid + 1, tr, l, r, val);
return;
}
long long get (int v, int tl, int tr, int pos) {
if (tl == tr) return t[v];
int mid = (tl + tr) >> 1;
if (pos <= mid) return (t[v] + get (v + v, tl, mid, pos));
return (t[v] + get (v + v + 1, mid + 1, tr, pos));
}
void cl (int v, int tl, int tr) {
t[v] = 0;
if (tl == tr) return;
int mid = (tl + tr) >> 1;
cl (v + v, tl, mid), cl (v + v + 1, mid + 1, tr);
return;
}
void solution () {
cin >> n >> m;
for (int i = 1; i <= m; ++ i) {
cin >> o[i];
pos[o[i]].pb (i);
}
for (int i = 1; i <= n; ++ i) cin >> p[i];
cin >> q;
for (int i = 1; i <= q; ++ i) cin >> l[i] >> r[i] >> a[i];
for (int i = 1; i <= n; ++ i) brd[i] = make_pair (1, q + 1), ans[i] = -1;
long long sum = 0;
for (int tt = 22; tt >= 0; -- tt) {
for (int i = 1; i <= n; ++ i) {
if (brd[i].F > brd[i].S) continue;
MID[(brd[i].F + brd[i].S) >> 1].pb (i);
}
for (int mid = 1; mid <= q; ++ mid) {
if (l[mid] <= r[mid]) upd (1, 1, m, l[mid], r[mid], a[mid]);
else {
upd (1, 1, m, 1, r[mid], a[mid]);
upd (1, 1, m, l[mid], m, a[mid]);
}
for (auto i: MID[mid]) {
sum = 0;
for (auto j: pos[i]) sum += get (1, 1, m, j);
if (sum >= p[i]) brd[i].S = mid, ans[i] = mid;
else brd[i].F = mid + 1;
}
}
cl (1, 1, m);
for (int i = 1; i <= q; ++ i) MID[i].clear();
}
for (int i = 1; i <= n; ++ i) {
if (ans[i] == -1) cout << "NIE\n";
else cout << ans[i] << '\n';
}
return;
}
signed main() {
YOSIK();
// srand (time(0));
// freopen ("E.in", "r", stdin);
// freopen ("E.out", "w", stdout);
int TT = 1;// cin >> TT;
for (int i = 1; i <= TT; ++ i) {
// cout << "Case " << i << ": ";
solution ();
}
return 0;
}
Compilation message
met.cpp:16:22: warning: overflow in conversion from 'double' to 'int' changes value from '2.0e+18' to '2147483647' [-Woverflow]
16 | const int INF = 2e18 + 1;
| ~~~~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
22872 KB |
Output is correct |
2 |
Correct |
8 ms |
23128 KB |
Output is correct |
3 |
Correct |
9 ms |
22876 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
22876 KB |
Output is correct |
2 |
Correct |
9 ms |
23080 KB |
Output is correct |
3 |
Correct |
9 ms |
23128 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
325 ms |
24096 KB |
Output is correct |
2 |
Correct |
366 ms |
28512 KB |
Output is correct |
3 |
Correct |
378 ms |
25424 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
363 ms |
24832 KB |
Output is correct |
2 |
Correct |
363 ms |
24660 KB |
Output is correct |
3 |
Correct |
399 ms |
27892 KB |
Output is correct |
4 |
Correct |
80 ms |
25040 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
171 ms |
24144 KB |
Output is correct |
2 |
Correct |
234 ms |
28796 KB |
Output is correct |
3 |
Correct |
166 ms |
23124 KB |
Output is correct |
4 |
Correct |
377 ms |
25732 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
361 ms |
23388 KB |
Output is correct |
2 |
Correct |
339 ms |
25328 KB |
Output is correct |
3 |
Correct |
347 ms |
23636 KB |
Output is correct |
4 |
Correct |
404 ms |
29260 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2898 ms |
46784 KB |
Output is correct |
2 |
Incorrect |
1436 ms |
33600 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2887 ms |
45876 KB |
Output is correct |
2 |
Incorrect |
1051 ms |
32568 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |