N個氣球排成一排,從左到右依次編號為1,2,3....N.每次給定2個整數a b(a <= b),lele便為騎上他的“小飛鴿"牌電動車從氣球a開始到氣球b依次給每個氣球塗一次顏色。但是N次以后lele已經忘記了第I個氣球已經塗過幾次顏色了,你能幫他算出每個氣球被塗過幾次顏色嗎?
Input
每個測試實例第一行為一個整數N,(N <= 100000).接下來的N行,每行包括2個整數a b(1 <= a <= b <= N)。
當N = 0,輸入結束。
Output
每個測試實例輸出一行,包括N個整數,第I個數代表第I個氣球總共被塗色的次數。
Sample Input
3 1 1 2 2 3 3 3 1 1 1 2 1 3 0
Sample Output
1 1 1 3 2 1
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int c[100100];
int a[100100];
int n;
int lowbit(int x)
{
return x&(-x);
}
void update(int i,int value)
{
while(i<=n)
{
c[i]+=value;
i+=lowbit(i);
}
return ;
}
int getsum(int i)
{
int ans=0;
while(i>0)
{
ans+=c[i];
i-=lowbit(i);
}
return ans;
}
int main()
{
while(cin>>n&&n)
{
memset(c,0,sizeof(c));
int i,x,y;
for(i=1;i<=n;i++)
{
cin>>x>>y;
update(x,1);
update(y+1,-1);
}
cout<<getsum(1);
for(i=2;i<=n;i++)
cout<<" "<<getsum(i);
cout<<endl;
}
return 0;
}
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。