/********************* بسم الله الرحمن الرحيم ***********************/
/******************** ٱلْحَمْدُ لِلَّٰهِ رَبِّ ٱلْعَالَمِينَ *************************/
/******************* Prophet Muhammad صلى الله عليه وسلم ************/
/*********************** وَقُل رَّبِّ زِدْنِي عِلْمًا **************************/
#ifdef ONLINE_JUDGE
#pragma GCC optimize("Ofast")
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#else
#endif
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
#define in binary_search
#define ll long long
#define ld long double
#define Hey ios::sync_with_stdio(false);
#define Welcome cin.tie(NULL), cout.tie(NULL);
#define all(v) v.begin(),v.end()
const int M = 3e5+1;
int n,m,seg[4*M],lazy[4*M];
void push(int v,int s,int e)
{
int mid=(s+e)/2,lc=v*2,rc=lc+1;
seg[lc]+=(mid-s)*lazy[v],seg[rc]+=(e-mid)*lazy[v];
lazy[lc]+=lazy[v],lazy[rc]+=lazy[v];
lazy[v]=0;
}
void modify(int l,int r,int x,int v=1,int s=0,int e=m)
{
if (l>=e or r<=s)
return;
if (l<=s and e<=r)
{
seg[v]+=x*(e-s);
lazy[v]+=x;
return;
}
int mid=(s+e)/2,lc=v*2,rc=lc+1;
push(v,s,e);
modify(l,r,x,lc,s,mid);
modify(l,r,x,rc,mid,e);
seg[v]=seg[lc]+seg[rc];
}
int get(int l,int r,int v=1,int s=0,int e=m)
{
if (l>=e or r<=s)
return 0;
if (l<=s and e<=r)
return seg[v];
push(v,s,e);
int mid=(s+e)/2,lc=v*2,rc=lc+1;
return get(l,r,lc,s,mid)+get(l,r,rc,mid,e);
}
void solve()
{
cin>>n>>m;
vector<int> sps[n];
int exp[n];
for (int i=0;i<m;i++)
{
int x;
cin>>x;
sps[x-1].push_back(i);
}
for (int i=0;i<n;i++)
cin>>exp[i];
int k,lg=22;
cin>>k;
vector<vector<int>> que;
for (int i=0;i<k;i++)
{
int l,r,x;
cin>>l>>r>>x;
l--;
que.push_back({l,r,x});
}
unordered_map<int,vector<int>> mid;
int ps[n][2];
for (int i=0;i<n;i++)
ps[i][0]=-1,ps[i][1]=1+k;
for (int i=0;i<n;i++)
mid[(ps[i][0]+ps[i][1])/2].push_back(i);
while (lg--)
{
unordered_map<int,vector<int>> mid1;
for (int i=0;i<=k;i++)
{
if (mid.find(i)!=mid.end())
for (int j:mid[i])
{
int su=0;
for (int a:sps[j])
su+=get(a,a+1);
if (su>=exp[j])
ps[j][1]=i;
else
ps[j][0]=i;
if (ps[j][1]-ps[j][0]>1)
mid1[(ps[j][0]+ps[j][1])/2].push_back(j);
}
if (i<k and que[i][0]<que[i][1])
modify(que[i][0],que[i][1],que[i][2]);
else if(i<k)
{
modify(que[i][0],m,que[i][2]);
modify(0,que[i][1],que[i][2]);
}
}
for (int i=0;i<M;i++)
seg[i]=lazy[i]=0;
mid=mid1;
}
for (int i=0;i<n;i++)
{
if (ps[i][1]==k+1)
cout<<"NIE"<<endl;
else
cout<<ps[i][1]<<endl;
}
}
signed main()
{
Hey! Welcome // S'up
int t = 1;
// cin >> t;
cout<<fixed<<setprecision(20);
while (t--)
solve();
return 0;
}
Compilation message
met.cpp: In function 'int main()':
met.cpp:137:5: warning: value computed is not used [-Wunused-value]
137 | Hey! Welcome // S'up
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
8796 KB |
Output is correct |
2 |
Correct |
9 ms |
8960 KB |
Output is correct |
3 |
Correct |
10 ms |
8932 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
9 ms |
8796 KB |
Output is correct |
2 |
Correct |
9 ms |
8796 KB |
Output is correct |
3 |
Correct |
11 ms |
8980 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
507 ms |
12600 KB |
Output is correct |
2 |
Correct |
584 ms |
14508 KB |
Output is correct |
3 |
Correct |
556 ms |
14596 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
590 ms |
13920 KB |
Output is correct |
2 |
Correct |
591 ms |
13968 KB |
Output is correct |
3 |
Correct |
574 ms |
14344 KB |
Output is correct |
4 |
Correct |
130 ms |
11040 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
305 ms |
13156 KB |
Output is correct |
2 |
Correct |
481 ms |
15104 KB |
Output is correct |
3 |
Correct |
233 ms |
11532 KB |
Output is correct |
4 |
Correct |
591 ms |
15152 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
557 ms |
12416 KB |
Output is correct |
2 |
Correct |
519 ms |
13700 KB |
Output is correct |
3 |
Correct |
518 ms |
12556 KB |
Output is correct |
4 |
Correct |
614 ms |
16136 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4975 ms |
50048 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5106 ms |
48868 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |