标签:queue 电动 wrap mil printf put inpu ace efi
当N = 0,输入结束。
3 1 1 2 2 3 3 3 1 1 1 2 1 3 0
1 1 1 3 2 1
这题之前做过,有非常多种解法。这次用树状数组做了一下,属于一维的区间问题,也是为后面的二维埋下伏笔。
#include<iostream> #include<stdio.h> #include<string.h> #include<math.h> #include<vector> #include<map> #include<queue> #include<stack> #include<string> #include<algorithm> using namespace std; #define maxn 100005 int b[maxn]; int lowbit(int x){ return x&(-x); } void update(int pos,int num) { while(pos<=maxn){ b[pos]+=num;pos+=lowbit(pos); } } int getsum(int pos) { int num=0; while(pos>0){ num+=b[pos];pos-=lowbit(pos); } return num; } int main() { int n,m,i,j,c,d; while(scanf("%d",&n)!=EOF && n!=0) { memset(b,0,sizeof(b)); for(i=1;i<=n;i++){ scanf("%d%d",&c,&d); update(c,1);update(d+1,-1); } for(i=1;i<=n;i++){ if(i==n)printf("%d\n",getsum(i)); else printf("%d ",getsum(i)); } //printf("\n"); } return 0; }
标签:queue 电动 wrap mil printf put inpu ace efi
原文地址:http://www.cnblogs.com/slgkaifa/p/6747032.html