记录编号 |
324416 |
评测结果 |
AAAAAAAAAA |
题目名称 |
贪婪大陆 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.143 s |
提交时间 |
2016-10-18 08:15:56 |
内存使用 |
1.05 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#define lowbit(x) ((x)&(-(x)))
using namespace std;
const int maxn=100010;
void add(int,int*);
int query(int,int*);
int n,m,d,l,r,c1[maxn],c2[maxn];
int main(){
#define MINE
#ifdef MINE
freopen("greedisland.in","r",stdin);
freopen("greedisland.out","w",stdout);
#endif
scanf("%d%d",&n,&m);
while(m--){
scanf("%d%d%d",&d,&l,&r);
if(d==1){
add(l,c1);
add(r,c2);
}
else printf("%d\n",query(r,c1)-query(l-1,c2));
}
#ifndef MINE
printf("\n-------------------------DONE-------------------------\n");
for(;;);
#endif
return 0;
}
void add(int x,int *c){
while(x<=n){
c[x]++;
x+=lowbit(x);
}
}
int query(int x,int *c){
int ans=0;
while(x){
ans+=c[x];
x-=lowbit(x);
}
return ans;
}