#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N = 3e5 + 100;
struct FENWICK{
int fen[N];
int sz;
inline void init(int x){
sz = x+3;
memset(fen , 0 , sizeof(fen));
}
inline void update(int p , int x) {
while(p <= sz){
fen[p] += x;
p += p & (-p);
//cout << "update:" << p << " " << sz << endl;
}
}
inline int query(int x){
int ret = 0;
while(x != 0){
ret += fen[x];
x -= x & (-x);
//cout <<"query:"<< x << endl;
}
return ret;
}
inline void rangeupdate(int l , int r,int x){
update(l,x);
if(r != sz)update(r+1,-x);
}
};
void solve(){
int n,m;cin >> n >> m;
vector < int > devlet[n+1];
for(int i = 1;i<=m;i++){
int x;cin >> x;
devlet[x].push_back(i);
}
int need[n+1];
for(int i = 1;i<=n;i++){
cin >> need[i];
}
int q;cin >> q;
vector < array < int , 3 > > query(q+1);
for(int i = 1;i<=q;i++){
cin >> query[i][0] >> query[i][1] >> query[i][2];
}
vector < array < int , 3 > > paralel[q+2],nparalel[q+2];
for(int i = 1;i<=n;i++){
paralel[(1+q+1)/2].push_back({i,1,q+1});
}
FENWICK fen;
for(int i = 0;i<=19;i++){
fen.init(m+10);
for(int j = 1;j<=q;j++){
if(query[j][0] <= query[j][1]){
fen.rangeupdate(query[j][0],query[j][1],query[j][2]);
}
else{
fen.rangeupdate(1,query[j][1],query[j][2]);
fen.rangeupdate(query[j][0],m+1,query[j][2]);
}
for(auto itr : paralel[j]){
if(itr[1] == itr[2]){
nparalel[j].push_back(itr);
continue;
}
int cur = 0;
for(auto itr1 : devlet[itr[0]]){
cur += fen.query(itr1);
}
if(cur >= need[itr[0]]){//r = mid;
int mid = (itr[1] + j)/2;
nparalel[mid].push_back({itr[0],itr[1],j});
}
else {//l = mid
int mid = (j+1 + itr[2])/2;
nparalel[mid].push_back({itr[0],j+1,itr[2]});
}
}
}
for(int j = 1;j<=q;j++){
paralel[j].swap(nparalel[j]);
nparalel[j].clear();
}
}
int ans[n+1];
memset(ans , -1 , sizeof(ans));
for(int j = 1;j<=q;j++){
for(auto itr : paralel[j]){
ans[itr[0]] = j;
}
}
for(int i = 1;i<=n;i++){
if(ans[i] == -1)cout << "NIE" << '\n';
else cout << ans[i] << '\n';
}
}
signed main(){
ios_base::sync_with_stdio(0);cin.tie(0);
int testcase = 1;//cin >> testcase;
while(testcase--)solve();
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
2908 KB |
Output is correct |
2 |
Correct |
3 ms |
3204 KB |
Output is correct |
3 |
Correct |
3 ms |
2908 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
2908 KB |
Output is correct |
2 |
Correct |
3 ms |
2908 KB |
Output is correct |
3 |
Correct |
4 ms |
3164 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
63 ms |
9120 KB |
Output is correct |
2 |
Correct |
103 ms |
17892 KB |
Output is correct |
3 |
Correct |
86 ms |
14096 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
95 ms |
12160 KB |
Output is correct |
2 |
Correct |
100 ms |
12072 KB |
Output is correct |
3 |
Correct |
107 ms |
19052 KB |
Output is correct |
4 |
Correct |
27 ms |
10080 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
79 ms |
9784 KB |
Output is correct |
2 |
Correct |
78 ms |
18936 KB |
Output is correct |
3 |
Correct |
46 ms |
6496 KB |
Output is correct |
4 |
Correct |
87 ms |
15820 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
81 ms |
6872 KB |
Output is correct |
2 |
Correct |
96 ms |
12164 KB |
Output is correct |
3 |
Correct |
66 ms |
8016 KB |
Output is correct |
4 |
Correct |
110 ms |
21196 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
641 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
759 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |