码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 4970 树状数组 “改段求段”

时间:2014-08-20 22:42:08      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   amp   line   size   ad   sp   

题意:塔防。给1--n,给出m个塔,每个塔有攻击力,给出k个怪兽的位子和血量,问有几只可以到达n点。

今天刚刚复习了树状数组,就碰到这个题,区间更新、区间求和类型。第三类树状数组可以斩。

注意一下大数即可。

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
__int64 tree1[100010],tree2[100010];        
int n,m;
void add_b(int x,int c)
{
    while(x>0)
    {
        tree1[x]+=c;
        x-=(x&(-x));
    }
}
__int64 sum_b(int x)
{
   // if(x==0)return 0;
    __int64 res=0;
    while(x<=n)
    {
        res+=tree1[x];
        x+=(x&(-x));
    }
    return res;
}
void add_c(int x,int c)
{
    if(x<1)return ;
    int tx=x;
    while(x<=n)
    {
        tree2[x]+=c*tx;
        x+=(x&(-x));
    }
}
__int64 sum_c(int x)
{
    __int64 res=0;
    while(x>0)
    {
        res+=tree2[x];
        x-=(x&(-x));
    }
    return res;
}
__int64 inline sum(int x)
{
    if(x>=1)
      return  sum_b(x)*x+sum_c(x-1);
    else
      return  0;
}
int main()
{
    while(~scanf("%d",&n)&&n)
    {
         scanf("%d",&m);
        memset(tree1,0,sizeof(tree1));
        memset(tree2,0,sizeof(tree2));
        int l,r,c;
       for(int i=0;i<m;i++)
       {
           scanf("%d%d%d",&l,&r,&c);
           add_b(r,c);add_b(l-1,-c);
           add_c(r,c); add_c(l-1,-c);
       }
       int k;
       scanf("%d",&k);
       int counted=0;
       __int64 xi,hi;
       for(int i=1;i<=k;i++)
       {
          scanf("%I64d%I64d",&hi,&xi);
          if(hi>sum(n)-sum(xi-1)){counted++;}
       }
       printf("%d\n",counted);
    }
    return 0;
}



hdu 4970 树状数组 “改段求段”,布布扣,bubuko.com

hdu 4970 树状数组 “改段求段”

标签:os   io   for   amp   line   size   ad   sp   

原文地址:http://blog.csdn.net/u011498819/article/details/38714087

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!