// Bolatulu
#include <bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
typedef double db;
#define int long long
#define kanagattandirilmagandiktarinizdan ios_base::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);
#define pb push_back
#define F first
#define S second
#define md (tl+tr)/2
#define TL v+v,tl,mid
#define TR v+v+1,mid+1,tr
#pragma GCC target( "sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#pragma GCC optimize("Ofast,unroll-loops,fast-math,O3")
using namespace std;
int binpow(int a,int n,int M) {
if (n==0)
return 1;
if (n%2!=0)
return (a * binpow(a,n-1,M))%M;
int z=binpow(a,n/2,M);
return (z*z)%M;
}
const ll INF = 1e18;
const int N = 3e5+7;
const int M = 1e9+7;
const ll HZ = 1e5;
const int MAX = INT_MAX;
const int MIN = INT_MIN;
const db pi = 3.141592653;
const int P=31;
struct DO{int l;int r;int sum;};
int n,m,a[N],p[N],q,sz,root[N];
DO t[200*N];
vector <int> d[N];
int pus(int v,int val) {
int nv=++sz;
t[nv]=t[v];
t[nv].sum+=val;
return nv;
}
void push(int v) {
t[v].l=pus(t[v].l,t[v].sum), t[v].r=pus(t[v].r,t[v].sum);
t[v].sum=0;
}
int upd(int v,int l,int r,int val,int tl=1,int tr=m) {
if (tl>r or tr<l)
return v;
int nv=++sz;
if (tl!=tr)
push(v);
t[nv]=t[v];
if (tl>=l and tr<=r) {
t[nv].sum+=val;
return nv;
}
t[nv].l=upd(t[v].l,l,r,val,tl,md), t[nv].r=upd(t[v].r,l,r,val,md+1,tr);
return nv;
}
int get(int v,int pos,int tl=1,int tr=m) {
if (tl==tr)
return t[v].sum;
push(v);
if (pos<=md)
return get(t[v].l,pos,tl,md);
else
return get(t[v].r,pos,md+1,tr);
}
int calc(int i,int v) {
if (v==0)
return 0;
int sum=0;
for (auto now : d[i])
sum+=get(root[v],now);
return sum;
}
int bs(int i) {
int l=-1,r=q+1;
while (l+1<r) {
int mid=(l+r)/2;
if (calc(i,mid)>=p[i])
r=mid;
else
l=mid;
}
return r;
}
void solve() {
cin >> n >> m;
for (int i=1;i<=m;i++)
cin >> a[i], d[a[i]].push_back(i);
for (int i=1;i<=n;i++)
cin >> p[i];
cin >> q;
for (int i=1;i<=q;i++) {
int l,r,v;
cin >> l >> r >> v;
if (l>r)
root[i]=upd(root[i-1],l,m,v), root[i]=upd(root[i],1,r,v);
else
root[i]=upd(root[i-1],l,r,v);
}
for (int i=1;i<=n;i++) {
int x=bs(i);
if (x==q+1)
cout << "NIE\n";
else
cout << x << '\n';
}
}
signed main() {
// freopen("lca.in", "r", stdin);
// freopen("lca.out", "w", stdout);
kanagattandirilmagandiktarinizdan
int test = 1, count = 1;
// cin >> test;
while (test--) {
// cout << "Case " << count << ":\n";
solve();
if (test)
// cout << '\n';
count++;
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
19036 KB |
Output is correct |
2 |
Correct |
4 ms |
19036 KB |
Output is correct |
3 |
Correct |
4 ms |
19036 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
19036 KB |
Output is correct |
2 |
Correct |
4 ms |
19136 KB |
Output is correct |
3 |
Correct |
4 ms |
19036 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
28 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
30 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
30 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
51 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
68 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
82 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |