#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define ff first
#define ss second
#define ll int64_t
#define ld long double
#define nl cout<<"\n"
#define i128 __int128_t
#define all(v) v.begin(),v.end()
#define mset(a,v) memset((a),(v),sizeof(a))
#define forn(i,a,b) for(int64_t i=int64_t(a);i<int64_t(b);++i)
#define forb(i,a,b) for(int64_t i=int64_t(a);i>=int64_t(b);--i)
#define fastio() ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define mod 1'000'000'007
#define mod2 998'244'353
#define inf 1'000'000'000'000'007
#define pi 3.14159265358979323846
template<class key,class cmp=std::less<key>>
using ordered_set=tree<key,null_type,cmp,rb_tree_tag,tree_order_statistics_node_update>;
template<class L,class R> ostream& operator<<(ostream& out,pair<L,R> &p) {return out<<"("<<p.ff<<", "<<p.ss<<")";}
template<class T> ostream& operator<<(ostream& out,vector<T> &v) {out<<"[";for(auto it=v.begin();it!=v.end();++it){if(it!=v.begin())out<<", ";out<<*it;}return out<<"]";}
template<class T> ostream& operator<<(ostream& out,deque<T> &v) {out<<"[";for(auto it=v.begin();it!=v.end();++it){if(it!=v.begin())out<<", ";out<<*it;}return out<<"]";}
template<class T> ostream& operator<<(ostream& out,set<T> &s) {out<<"{";for(auto it=s.begin();it!=s.end();++it){if(it!=s.begin())out<<", ";out<<*it;}return out<<"}";}
template<class T> ostream& operator<<(ostream& out,ordered_set<T> &s) {out<<"{";for(auto it=s.begin();it!=s.end();++it){if(it!=s.begin())out<<", ";out<<*it;}return out<<"}";}
template<class L,class R> ostream& operator<<(ostream& out,map<L,R> &m) {out<<"{";for(auto it=m.begin();it!=m.end();++it){if(it!=m.begin())out<<", ";out<<*it;}return out<<"}";}
void dbg_out() {cerr<<"]\n";}
template<typename Head,typename... Tail>
void dbg_out(Head H,Tail... T) {cerr<<H;if(sizeof...(Tail))cerr<<", ";dbg_out(T...);}
#ifdef LOCAL
#define dbg(...) cerr<<"["<<#__VA_ARGS__<<"] = [",dbg_out(__VA_ARGS__)
#else
#define dbg(...)
#endif
//---------------------------------mars4---------------------------------
class SegtreeMax
{
ll N=0;
vector<ll> segtree;
vector<ll> lazy;
ll _build(vector<ll> &a,ll st,ll ed,ll i=1)
{
if(st==ed)
return segtree[i]=a[st];
ll mid=(st+ed)>>1;
return segtree[i]=max(_build(a,st,mid,i<<1),_build(a,mid+1,ed,i<<1|1));
}
void _push(ll st,ll ed,ll val,ll i)
{
if(st!=ed)
{
lazy[i<<1]+=val;
lazy[i<<1|1]+=val;
}
}
void _update(ll st,ll ed,ll l,ll r,ll val,ll i=1)
{
if(lazy[i])
{
segtree[i]+=lazy[i];
_push(st,ed,lazy[i],i);
lazy[i]=0;
}
if(st>ed or st>r or ed<l)
return;
if(st>=l and ed<=r)
{
segtree[i]+=val;
_push(st,ed,val,i);
return;
}
ll mid=(st+ed)>>1;
_update(st,mid,l,r,val,i<<1);
_update(mid+1,ed,l,r,val,i<<1|1);
segtree[i]=max(segtree[i<<1],segtree[i<<1|1]);
}
ll _query(ll st,ll ed,ll l,ll r,ll i=1)
{
if(lazy[i])
{
segtree[i]+=lazy[i];
_push(st,ed,lazy[i],i);
lazy[i]=0;
}
if(st>ed or st>r or ed<l)
return -inf;
if(st>=l and ed<=r)
return segtree[i];
ll mid=(st+ed)>>1;
return max(_query(st,mid,l,r,i<<1),_query(mid+1,ed,l,r,i<<1|1));
}
ll _first_element_atleast_x(ll st,ll ed,ll l,ll r,ll val,ll i=1)
{
if(lazy[i])
{
segtree[i]+=lazy[i];
_push(st,ed,lazy[i],i);
lazy[i]=0;
}
if(st>ed or st>r or ed<l or segtree[i]<val)
return -1;
if(st==ed)
return st;
ll mid=(st+ed)>>1;
ll ind=_first_element_atleast_x(st,mid,l,r,val,i<<1);
if(ind==-1)
ind=_first_element_atleast_x(mid+1,ed,l,r,val,i<<1|1);
return ind;
}
public:
void init(ll n,ll val=0)
{
N=n;
segtree=vector<ll>(N<<2,val);
lazy=vector<ll>(N<<2);
}
void build(vector<ll> &a)
{
_build(a,0,N-1);
}
void update(ll l,ll r,ll val)
{
_update(0,N-1,l,r,val);
}
ll query(ll l,ll r)
{
return _query(0,N-1,l,r);
}
ll first_element_atleast_x(ll l,ll r,ll val)
{
return _first_element_atleast_x(0,N-1,l,r,val);
}
void clear()
{
segtree=vector<ll>(N<<2);
lazy=vector<ll>(N<<2);
}
};
int main()
{
fastio();
ll z,n,m,t,k,i,j,l,d,h,r;
cin>>n>>m;
vector<ll> a(n);
for(ll &i:a)
{
cin>>i;
}
sort(all(a));
SegtreeMax s;
s.init(n);
s.build(a);
forn(i,0,m)
{
char ch;
cin>>ch>>l>>r;
if(ch=='F')
{
ll lind=s.first_element_atleast_x(0,n-1,r);
if(lind!=-1)
{
if(n-lind<=l)
{
s.update(lind,n-1,1);
}
else
{
ll rval=s.query(lind+l-1,lind+l-1);
ll rind=s.first_element_atleast_x(0,n-1,rval+1);
rind=rind==-1?n-1:rind-1;
ll mind=s.first_element_atleast_x(0,n-1,rval)-1;
if(mind>=lind)
{
s.update(lind,mind,1);
}
ll rem=l-(mind-lind+1);
if(rem)
{
s.update(rind-rem+1,rind,1);
}
}
}
}
else
{
ll lind=s.first_element_atleast_x(0,n-1,l);
ll rind=s.first_element_atleast_x(0,n-1,r+1);
lind=lind==-1?n:lind;
rind=rind==-1?n:rind;
cout<<rind-lind<<"\n";
}
}
cerr<<"\nTime elapsed: "<<1000*clock()/CLOCKS_PER_SEC<<"ms\n";
return 0;
}
Compilation message
grow.cpp: In function 'int main()':
grow.cpp:164:5: warning: unused variable 'z' [-Wunused-variable]
164 | ll z,n,m,t,k,i,j,l,d,h,r;
| ^
grow.cpp:164:11: warning: unused variable 't' [-Wunused-variable]
164 | ll z,n,m,t,k,i,j,l,d,h,r;
| ^
grow.cpp:164:13: warning: unused variable 'k' [-Wunused-variable]
164 | ll z,n,m,t,k,i,j,l,d,h,r;
| ^
grow.cpp:164:15: warning: unused variable 'i' [-Wunused-variable]
164 | ll z,n,m,t,k,i,j,l,d,h,r;
| ^
grow.cpp:164:17: warning: unused variable 'j' [-Wunused-variable]
164 | ll z,n,m,t,k,i,j,l,d,h,r;
| ^
grow.cpp:164:21: warning: unused variable 'd' [-Wunused-variable]
164 | ll z,n,m,t,k,i,j,l,d,h,r;
| ^
grow.cpp:164:23: warning: unused variable 'h' [-Wunused-variable]
164 | ll z,n,m,t,k,i,j,l,d,h,r;
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
79 ms |
6652 KB |
Output is correct |
2 |
Correct |
122 ms |
8020 KB |
Output is correct |
3 |
Correct |
53 ms |
7744 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
468 KB |
Output is correct |
2 |
Correct |
2 ms |
468 KB |
Output is correct |
3 |
Correct |
2 ms |
468 KB |
Output is correct |
4 |
Correct |
1 ms |
468 KB |
Output is correct |
5 |
Correct |
48 ms |
1148 KB |
Output is correct |
6 |
Correct |
49 ms |
1172 KB |
Output is correct |
7 |
Correct |
5 ms |
724 KB |
Output is correct |
8 |
Correct |
23 ms |
1404 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
1236 KB |
Output is correct |
2 |
Correct |
53 ms |
2220 KB |
Output is correct |
3 |
Correct |
1 ms |
724 KB |
Output is correct |
4 |
Correct |
34 ms |
1772 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
37 ms |
1132 KB |
Output is correct |
2 |
Correct |
56 ms |
2076 KB |
Output is correct |
3 |
Correct |
10 ms |
852 KB |
Output is correct |
4 |
Correct |
54 ms |
2188 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
73 ms |
5036 KB |
Output is correct |
2 |
Correct |
118 ms |
6784 KB |
Output is correct |
3 |
Correct |
15 ms |
1948 KB |
Output is correct |
4 |
Correct |
43 ms |
6740 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
106 ms |
5588 KB |
Output is correct |
2 |
Correct |
112 ms |
7284 KB |
Output is correct |
3 |
Correct |
51 ms |
6860 KB |
Output is correct |
4 |
Correct |
16 ms |
1956 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
70 ms |
6144 KB |
Output is correct |
2 |
Correct |
72 ms |
7776 KB |
Output is correct |
3 |
Correct |
56 ms |
7604 KB |
Output is correct |
4 |
Correct |
15 ms |
1876 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
121 ms |
6528 KB |
Output is correct |
2 |
Correct |
117 ms |
6068 KB |
Output is correct |
3 |
Correct |
34 ms |
8140 KB |
Output is correct |
4 |
Correct |
65 ms |
7820 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
92 ms |
6600 KB |
Output is correct |
2 |
Correct |
121 ms |
8144 KB |
Output is correct |
3 |
Correct |
166 ms |
9068 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
85 ms |
7724 KB |
Output is correct |