#include<bits/stdc++.h>
using namespace std;
const int N=3e5+10;
const int M=3e5+5;
int o[N],al[N],ar[N],mid[N],l[N],r[N];
long long p[N],a[N],fw[N],s[N];
vector<int> ask[N];
vector<int> own[N];
void update(int idx,long long val){
if(idx==0) return;
while(idx<=M){
fw[idx]+=val;
idx+=idx & -idx;
}
}
long long read(int idx){
long long sum=0;
while(idx>0){
sum+=fw[idx];
idx-=idx & -idx;
}
return sum;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int n,m,k;
cin>>n >>m;
for(int i=1;i<=m;i++) cin>>o[i],own[o[i]].push_back(i);
for(int i=1;i<=n;i++) cin>>p[i];
cin>>k;
for(int i=1;i<=k;i++) cin>>al[i] >>ar[i] >>a[i];
for(int i=1;i<=n;i++) l[i]=1,r[i]=k;
while(true){
bool up=false;
for(int i=1;i<=k;i++) ask[i].clear();
for(int i=1;i<=n;i++) mid[i]=(l[i]+r[i])/2,ask[mid[i]].push_back(i);
for(int i=0;i<=M;i++) fw[i]=0;
for(int i=1;i<=k;i++){
if(al[i]<=ar[i]) update(al[i],a[i]),update(ar[i]+1,-1*a[i]);
else update(al[i],a[i]),update(m+1,-1*a[i]),update(1,a[i]),update(ar[i]+1,-1*a[i]);
for(int j=0;j<ask[i].size();j++){
int u=ask[i][j];
long long sum=0;
for(int x=0;x<own[u].size();x++){
sum+=read(own[u][x]);
}
if(sum>=p[u]){
if(r[u]!=mid[u]) up=true;
r[u]=mid[u];
}
else{
if(l[u]!=mid[u]+1) up=true;
l[u]=mid[u]+1;
}
}
}
if(!up) break;
}
for(int i=0;i<=M;i++) fw[i]=0;
for(int i=1;i<=k;i++) ask[i].clear();
for(int i=1;i<=n;i++) ask[k].push_back(i);
for(int i=1;i<=k;i++){
if(al[i]<=ar[i]) update(al[i],a[i]),update(ar[i]+1,-1*a[i]);
else update(al[i],a[i]),update(m+1,-1*a[i]),update(1,a[i]),update(ar[i]+1,-1*a[i]);
for(int j=0;j<ask[i].size();j++){
int u=ask[i][j];
long long sum=0;
for(int x=0;x<own[u].size();x++){
sum+=read(own[u][x]);
}
s[u]=sum;
}
}
for(int i=1;i<=n;i++){
if(s[i]<p[i]) cout<<"NIE";
else cout<<l[i];
cout<<"\n";
}
}
Compilation message
met.cpp: In function 'int main()':
met.cpp:45:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
45 | for(int j=0;j<ask[i].size();j++){
| ~^~~~~~~~~~~~~~
met.cpp:48:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for(int x=0;x<own[u].size();x++){
| ~^~~~~~~~~~~~~~
met.cpp:69:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
69 | for(int j=0;j<ask[i].size();j++){
| ~^~~~~~~~~~~~~~
met.cpp:72:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | for(int x=0;x<own[u].size();x++){
| ~^~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
29276 KB |
Output is correct |
2 |
Correct |
5 ms |
29276 KB |
Output is correct |
3 |
Correct |
5 ms |
29276 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
29276 KB |
Output is correct |
2 |
Correct |
5 ms |
29416 KB |
Output is correct |
3 |
Correct |
5 ms |
29276 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
80 ms |
30276 KB |
Output is correct |
2 |
Correct |
175 ms |
32000 KB |
Output is correct |
3 |
Correct |
104 ms |
31828 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
136 ms |
31400 KB |
Output is correct |
2 |
Correct |
137 ms |
31268 KB |
Output is correct |
3 |
Correct |
183 ms |
32336 KB |
Output is correct |
4 |
Correct |
20 ms |
31276 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
112 ms |
30804 KB |
Output is correct |
2 |
Correct |
175 ms |
32596 KB |
Output is correct |
3 |
Correct |
126 ms |
29660 KB |
Output is correct |
4 |
Correct |
109 ms |
32336 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
166 ms |
29784 KB |
Output is correct |
2 |
Correct |
168 ms |
31216 KB |
Output is correct |
3 |
Correct |
89 ms |
30040 KB |
Output is correct |
4 |
Correct |
153 ms |
33376 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
937 ms |
43860 KB |
Output is correct |
2 |
Incorrect |
715 ms |
32092 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
958 ms |
42684 KB |
Output is correct |
2 |
Incorrect |
683 ms |
32284 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |