#include <bits/stdc++.h>
using namespace std;
// #define x first
// #define y second
#define int long long
void solve1(int n,int m,int q){
vector<deque<pair<int,int>>> queues(n+1);
for(int i=1;i<=q;i++){
int type;cin>>type;
if(type==1){
int l,r,c,k;cin>>l>>r>>c>>k;
for(int x=l;x<=r;x++)queues[x].emplace_back(k,c);
} else if(type==2){
int l,r,k;cin>>l>>r>>k;
for(int x=l;x<=r;x++){
int tar = k;
while(tar and !queues[x].empty()){
if(queues[x].front().first<=tar){
tar-=queues[x].front().first;
queues[x].pop_front();
} else {
queues[x].front().first-=tar;
tar = 0;
}
}
}
} else {
int a,b;cin>>a>>b;
int curr = 0;
for(int i=0;i<queues[a].size();i++){
curr+=queues[a][i].first;
if(curr>=b){cout<<queues[a][i].second<<'\n';break;}
}
if(curr<b)cout<<"0\n";
}
}
exit(0);
}
pair<int,int> tree[2000000];
void merge(pair<int,int> &a,pair<int,int> b){
int cut = min(a.second,b.first);
a.second-=cut;
b.first-=cut;
a.first+=b.first;
a.second+=b.second;
}
int n;
void update(int qL,int qR,pair<int,int> qu,int x=1,int l=1,int r=n){
if(qR<l or r<qL)return;
if(qL<=l and r<=qR){
merge(tree[x],qu);
return;
}
merge(tree[2*x],tree[x]);
merge(tree[2*x+1],tree[x]);
tree[x] = {0,0};
int mid = (l+r)/2;
update(qL,qR,qu,2*x,l,mid);
update(qL,qR,qu,2*x+1,mid+1,r);
}
int get(int qu,int x=1,int l=1,int r=n){
if(qu<l or r<qu)return 0;
if(l==r){
return tree[x].second;
}
merge(tree[2*x],tree[x]);
merge(tree[2*x+1],tree[x]);
tree[x] = {0,0};
int mid = (l+r)/2;
return get(qu,2*x,l,mid)+get(qu,2*x+1,mid+1,r);
}
void solve2(int n,int m,int q){
for(int i=1;i<=q;i++){
int type;cin>>type;
if(type==1){
int l,r,c,k;cin>>l>>r>>c>>k;
update(l,r,{0,k});
} else if(type==2){
int l,r,k;cin>>l>>r>>k;
update(l,r,{k,0});
} else {
int a,b;cin>>a>>b;
if(get(a)<b)cout<<"0\n";
else cout<<"1\n";
}
}
exit(0);
}
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int m,q;
cin >> n >> m >> q;
solve2(n,m,q);
if(n<=2000 and q<=2000)solve1(n,m,q);
if(m==1)solve2(n,m,q);
}
Compilation message
foodcourt.cpp: In function 'void solve1(long long int, long long int, long long int)':
foodcourt.cpp:33:26: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::deque<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | for(int i=0;i<queues[a].size();i++){
| ~^~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
26 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
153 ms |
8680 KB |
Output is correct |
2 |
Correct |
130 ms |
12880 KB |
Output is correct |
3 |
Correct |
187 ms |
14688 KB |
Output is correct |
4 |
Correct |
138 ms |
13140 KB |
Output is correct |
5 |
Correct |
128 ms |
13148 KB |
Output is correct |
6 |
Correct |
183 ms |
14932 KB |
Output is correct |
7 |
Correct |
39 ms |
4692 KB |
Output is correct |
8 |
Correct |
45 ms |
4692 KB |
Output is correct |
9 |
Correct |
174 ms |
14872 KB |
Output is correct |
10 |
Correct |
182 ms |
14932 KB |
Output is correct |
11 |
Correct |
189 ms |
14792 KB |
Output is correct |
12 |
Correct |
205 ms |
14936 KB |
Output is correct |
13 |
Correct |
191 ms |
14672 KB |
Output is correct |
14 |
Correct |
194 ms |
14676 KB |
Output is correct |
15 |
Correct |
186 ms |
14676 KB |
Output is correct |
16 |
Correct |
168 ms |
14672 KB |
Output is correct |
17 |
Correct |
172 ms |
14680 KB |
Output is correct |
18 |
Correct |
170 ms |
14676 KB |
Output is correct |
19 |
Correct |
186 ms |
14676 KB |
Output is correct |
20 |
Correct |
163 ms |
14676 KB |
Output is correct |
21 |
Correct |
210 ms |
14584 KB |
Output is correct |
22 |
Correct |
182 ms |
14692 KB |
Output is correct |
23 |
Correct |
210 ms |
14664 KB |
Output is correct |
24 |
Correct |
239 ms |
14680 KB |
Output is correct |
25 |
Correct |
153 ms |
14324 KB |
Output is correct |
26 |
Correct |
148 ms |
14420 KB |
Output is correct |
27 |
Correct |
119 ms |
14420 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
38 ms |
2532 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |