【线段树】hdu 1556 Color the ball

【线段树】hdu 1556 Color the ball

题目链接:hdu 1556 Color the ball

题目大意

给你N个气球,不断刷新指定区间的颜色,刷新N次,最后输出每一个气球的刷新次数。

上一篇文章是线段树的点修改、区间查询;

这篇文章是线段树的区间修改、点查询;

说一下思路

  • 线段树的区间修改:利用线段树的区间查询,查询到叶节点segTree[root].sum++,而如果对区间进行多次点修改的话,注定超时
  • 线段树的点查询:以为用之前的区间查询就可以了,实际上还是有改变,因为原理不是特别懂,后面慢慢搞懂!

参考代码

/*Author:Hacker_vision*/
#include<bits/stdc++.h>
using namespace std;

const int _max = 1e5 + 10;
int n,x,y;
struct segTree{
  int lc,rc;
  int sum;
}segTree[_max<<2];

void build(int root,int L,int R){//建树O(logN)
  segTree[root].lc=L;
  segTree[root].rc=R;
  if(L==R){
    segTree[root].sum=0;//初始值为0:A[1].A[2]..A[N]=0;
    return ;
  }
  int mid = (L + R) >> 1;
  build(root<<1,L,mid);
  build(root<<1|1,mid+1,R);
  segTree[root].sum=segTree[root<<1].sum+segTree[root<<1|1].sum;
}

void update(int root,int L,int R){//区间修改
  if(segTree[root].lc==L&&segTree[root].rc==R) {
    segTree[root].sum++;
    return;
  }
  int mid = (segTree[root].lc + segTree[root].rc) >> 1;
  if(R <= mid) update(root<<1,L,R);
  else if(mid < L) update(root<<1|1,L,R);
  else{
    update(root<<1,L,mid);
    update(root<<1|1,mid+1,R);
  }
}

int query(int root,int L,int R){//点(区间)查询
  if(segTree[root].lc==L&&segTree[root].rc==R) return segTree[root].sum;
  int mid = (segTree[root].lc + segTree[root].rc) >> 1 ;
  if(R <= mid) return segTree[root].sum+query(root<<1,L,R);
  else if(mid < L) return segTree[root].sum+query(root<<1|1,L,R);
  else return segTree[root].sum+query(root<<1,L,mid)+query(root<<1|1,mid+1,R);
}

int main(){
 // freopen("input.txt","r",stdin);
  while(scanf("%d",&n)==1&&n){
    build(1,1,n);
    for(int i = 0;i < n; ++ i){
        scanf("%d%d",&x,&y);
      //  printf("%d%d\n",x,y);
        update(1,x,y);
    }
    for(int i = 1; i <= n; ++ i)
      if(i==1) printf("%d",query(1,i,i));
      else printf(" %d",query(1,i,i));
      puts("");
  }
  return 0;
}

  • 加粗 Ctrl + B
  • 斜体 Ctrl + I
  • 引用 Ctrl + Q
  • 插入链接 Ctrl + L
  • 插入代码 Ctrl + K
  • 插入图片 Ctrl + G
  • 提升标题 Ctrl + H
  • 有序列表 Ctrl + O
  • 无序列表 Ctrl + U
  • 横线 Ctrl + R
  • 撤销 Ctrl + Z
  • 重做 Ctrl + Y

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-15 15:18:36

【线段树】hdu 1556 Color the ball的相关文章

线段树 [HDU 1199] Color the Ball

Color the Ball Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 4529    Accepted Submission(s): 1114 Problem Description There are infinite balls in a line (numbered 1 2 3 ....), and initially a

HDU 1556 Color the ball 线段树

HDU 1556 Color the ball 线段树模版题,存个模板 1 #include <iostream> 2 #include <cstdio> 3 #include <fstream> 4 #include <algorithm> 5 #include <cmath> 6 #include <deque> 7 #include <vector> 8 #include <queue> 9 #inclu

hdu 1556:Color the ball(线段树,区间更新,经典题)

Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 7941    Accepted Submission(s): 4070 Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"牌电

HDU 1556 Color the ball 线段树更新区间查点

点击打开链接 Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 9120    Accepted Submission(s): 4665 Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽

hdu 1556:Color the ball(第二类树状数组 —— 区间更新,点求和)

Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 8984    Accepted Submission(s): 4594 Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的“小飞鸽"牌电动车从气球

HDU - 1556 Color the ball (一维树状数组 + 区间修改 + 单点求值)

HDU - 1556 Color the ball Time Limit: 3000MS   Memory Limit: 32768KB   64bit IO Format: %I64d & %I64u Submit Status Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"牌电动车从气球a开始到气球b依次给每个气球涂一次颜色.但是N次以后lele已经忘记了第I个气

hdu 1556 Color the ball(树状数组)

转载请注明出处:http://blog.csdn.net/u012860063 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1556 Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"牌电动车从气球a开始到气球b依次给每个气球涂一次颜色.但是N次以后lele已经忘记了第I个气球已经涂过几次颜色了,你能帮他算出每个气

hdu 1556 Color the ball (扫描线+树状数组)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1556 Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 14237    Accepted Submission(s): 7120 Problem Description N个气球排成一排,从左到右依次编号为1,

HDU 1556 Color the ball(线段树:区间更新)

http://acm.hdu.edu.cn/showproblem.php?pid=1556 题意: N个气球,每次[a,b]之间的气球涂一次色,统计每个气球涂色的次数. 思路: 这道题目用树状数组和线段树都可以,拿这道题来入门一下线段树的区间更新. 1 #include<iostream> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 6 const int maxn = 1000