HDU4325 树状数组

Flowers

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 3148    Accepted Submission(s): 1549


Problem Description
As is known to all, the blooming time and duration varies between different kinds of flowers. Now there is a garden planted full of flowers. The gardener wants to know how many flowers will bloom in the garden in a specific time. But there are too many flowers in the garden, so he wants you to help him.
 

 

Input
The first line contains a single integer t (1 <= t <= 10), the number of test cases.
For each case, the first line contains two integer N and M, where N (1 <= N <= 10^5) is the number of flowers, and M (1 <= M <= 10^5) is the query times.
In the next N lines, each line contains two integer S i and T i (1 <= S i <= T i <= 10^9), means i-th flower will be blooming at time [S i, T i].
In the next M lines, each line contains an integer T i, means the time of i-th query.
 

 

Output
For each case, output the case number as shown and then print M lines. Each line contains an integer, meaning the number of blooming flowers.
Sample outputs are available for more details.
 

 

Sample Input
2 1 1 5 10 4 2 3 1 4 4 8 1 4 6
 

 

Sample Output
Case #1: 0 Case #2: 1 2 1
 

 

Author
BJTU
 

 

Source
 题意:
给出若干个花的开花时期,问某一个日期有几多花开放。
代码:
 1 /*树状数组模板题,若在区间a,b内开花则使a端点+1,使b+1端点-1,最后求到某一点的和就是某一点的值
 2 某一点的值即可。*/
 3 #include<iostream>
 4 #include<string>
 5 #include<cstdio>
 6 #include<cmath>
 7 #include<cstring>
 8 #include<algorithm>
 9 #include<vector>
10 #include<iomanip>
11 #include<queue>
12 #include<stack>
13 using namespace std;
14 int t,n,m;
15 int A[100005];
16 int lowbit(int x)
17 {
18     return x&(-x);
19 }
20 void add(int rt,int c)
21 {
22     while(rt<=100005)
23     {
24         A[rt]+=c;
25         rt+=lowbit(rt);
26     }
27 }
28 int sum(int rt)
29 {
30     int s=0;
31     while(rt>0)
32     {
33         s+=A[rt];
34         rt-=lowbit(rt);
35     }
36     return s;
37 }
38 int main()
39 {
40     int a,b,c;
41     scanf("%d",&t);
42     for(int i=1;i<=t;i++)
43     {
44         memset(A,0,sizeof(A));
45         printf("Case #%d:\n",i);
46         scanf("%d%d",&n,&m);
47         while(n--)
48         {
49             scanf("%d%d",&a,&b);
50             add(a,1);
51             add(b+1,-1);
52         }
53         while(m--)
54         {
55             scanf("%d",&c);
56             printf("%d\n",sum(c));
57         }
58     }
59     return 0;
60 }

 

转载于:https://www.cnblogs.com/--ZHIYUAN/p/5877111.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值