#include <bits/stdc++.h>
#pragma optimize GCC ("Ofast")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
///#include <tryhardmode>
///#include <GODMODE::ON>
///Hey I heard you like the wild ones
///Wild Ones - Flo Rida, Sia
using namespace std;
//ifstream fin ("f.in");
//ofstream fout ("f.out");
const int INF=1e9+5;
struct SegTree{
public:
int s;
bool lazy;
SegTree *left;
SegTree *right;
SegTree()
{
s=0;
lazy=false;
left=right=NULL;
}
};
void propag(SegTree *aint,int st,int dr)
{
if(aint==NULL)
return ;
else
{
if(aint->lazy)
{
aint->s=dr-st+1;
if(st!=dr)
{
if(aint->left==NULL)
aint->left=new SegTree();
if(aint->right==NULL)
aint->right=new SegTree();
aint->left->lazy=true;
aint->right->lazy=true;
}
aint->lazy=false;
}
}
}
void update(SegTree *aint,int st,int dr,int a,int b)
{
propag(aint,st,dr);
if(a<=st && dr<=b)
{
aint->lazy=true;
aint->s=dr-st+1;
return ;
}
else
{
int mij=st+dr;
mij/=2;
if(aint->left==NULL)
aint->left=new SegTree();
if(aint->right==NULL)
aint->right=new SegTree();
if(a<=mij)
update(aint->left,st,mij,a,b);
if(mij<b)
update(aint->right,mij+1,dr,a,b);
aint->s=(aint->left->s)+(aint->right->s);
}
}
int query(SegTree *aint,int st,int dr,int a,int b)
{
if(aint==NULL)
return 0;
propag(aint,st,dr);
if(a<=st && dr<=b)
return aint->s;
else
{
int kon=0;
int mij=st+dr;
mij/=2;
if(a<=mij)
kon+=query(aint->left,st,mij,a,b);
if(mij<b)
kon+=query(aint->right,mij+1,dr,a,b);
return kon;
}
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
SegTree *aint=new SegTree();
int t,c=0;
cin>>t;
while(t--)
{
int type,x,y;
cin>>type>>x>>y;
if(type==1)
{
c=query(aint,1,INF,x+c,y+c);
cout<<c<<"\n";
}
else
update(aint,1,INF,x+c,y+c);
}
//fin.close();
//fout.close();
return 0;
}
Compilation message
apple.cpp:3: warning: ignoring '#pragma optimize GCC' [-Wunknown-pragmas]
3 | #pragma optimize GCC ("Ofast")
|
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
452 KB |
Output is correct |
3 |
Runtime error |
201 ms |
262144 KB |
Execution killed with signal 9 |
4 |
Halted |
0 ms |
0 KB |
- |