程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> hdoj Color the ball

hdoj Color the ball

編輯:C++入門知識

hdoj Color the ball


Color the ball

Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 11231 Accepted Submission(s): 5595


 

Problem Description 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

Author 8600 樹狀數組區間更新
#include
#include
#include
using namespace std;
const int MAX=100005;
int a[MAX],c[MAX];
int low(int n){
	return n&(-n);
}
void add(int p,int q,int n){
	while(p<=n){
		c[p]+=q;
		p+=low(p);
	}
}
int sum(int n){
	int result=0;
	while(n!=0){
		result+=c[n];
		n-=low(n);
	}
	return result;
}
int main()
{
	int n,m,i,j,a,b;
	while(scanf("%d",&n),n){
		memset(c,0,sizeof(c));
		for(i=1;i<=n;++i){
			scanf("%d%d",&a,&b);
				add(a,1,n);
				add(b+1,-1,n);
		}
		printf("%d",sum(1));
		for(i=2;i<=n;++i){
			printf(" %d",sum(i));
		}
		printf("\n");
	}
	return 0;
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved