#include<stdio.h>
#include<algorithm>
using namespace std;
int n,x,y,t=1,p;
struct data
{
int maxi,mini,ch;
}tree[600010];
void update(int x,int y,int k,int s,int e)
{
if(tree[k].ch!=0)
{
tree[k].maxi+=tree[k].ch; tree[k].mini+=tree[k].ch;
tree[k*2].ch+=tree[k].ch; tree[k*2+1].ch+=tree[k].ch; tree[k].ch=0;
}
if(s<=x && y<=e)
{
tree[k].maxi+=p; tree[k].mini+=p; tree[k*2].ch+=p; tree[k*2+1].ch+=p;
return;
}
if(s>y || e<x) return;
update(x,(x+y)/2,k*2,s,e);
update((x+y)/2+1,y,k*2+1,s,e);
tree[k].maxi=max(tree[k*2].maxi,tree[k*2+1].maxi);
tree[k].mini=min(tree[k*2].mini,tree[k*2+1].mini);
}
int main()
{
int i;
scanf("%d",&n);
for(;;){if(t>=n) break; t*=2;}
for(i=1;i<=n;i++)
{
scanf("%d %d",&x,&y);
if(y==1) p=1;
else p=-1;
update(1,t,1,1,x);
if(tree[1].maxi<=0) printf("<\n");
else if(tree[1].mini>=0) printf(">\n");
else printf("?\n");
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
8112 KB |
Output is correct - 73 tokens |
2 |
Correct |
0 ms |
8112 KB |
Output is correct - 89 tokens |
3 |
Correct |
0 ms |
8112 KB |
Output is correct - 221 tokens |
4 |
Correct |
0 ms |
8112 KB |
Output is correct - 21 tokens |
5 |
Correct |
0 ms |
8112 KB |
Output is correct - 369 tokens |
6 |
Correct |
0 ms |
8112 KB |
Output is correct - 492 tokens |
7 |
Correct |
0 ms |
8112 KB |
Output is correct - 945 tokens |
8 |
Correct |
0 ms |
8112 KB |
Output is correct - 1237 tokens |
9 |
Correct |
0 ms |
8112 KB |
Output is correct - 1105 tokens |
10 |
Correct |
5 ms |
8112 KB |
Output is correct - 8921 tokens |
11 |
Correct |
38 ms |
8112 KB |
Output is correct - 56110 tokens |
12 |
Correct |
70 ms |
8112 KB |
Output is correct - 90207 tokens |
13 |
Correct |
60 ms |
8112 KB |
Output is correct - 100000 tokens |
14 |
Correct |
57 ms |
8112 KB |
Output is correct - 100000 tokens |
15 |
Correct |
58 ms |
8112 KB |
Output is correct - 100000 tokens |
16 |
Correct |
51 ms |
8112 KB |
Output is correct - 100000 tokens |
17 |
Correct |
56 ms |
8112 KB |
Output is correct - 100000 tokens |
18 |
Correct |
69 ms |
8112 KB |
Output is correct - 99999 tokens |
19 |
Correct |
65 ms |
8112 KB |
Output is correct - 99999 tokens |
20 |
Correct |
56 ms |
8112 KB |
Output is correct - 99999 tokens |
21 |
Correct |
63 ms |
8112 KB |
Output is correct - 100000 tokens |
22 |
Correct |
61 ms |
8112 KB |
Output is correct - 100000 tokens |
23 |
Correct |
59 ms |
8112 KB |
Output is correct - 100000 tokens |
24 |
Correct |
52 ms |
8112 KB |
Output is correct - 100000 tokens |
25 |
Correct |
57 ms |
8112 KB |
Output is correct - 100000 tokens |