HDU 1166 - 敌兵布阵

嗯,这是一道被放在线段树里的树状数组题。

 1 #include<cstdio>
 2 #include<iostream>
 3 #include<cstring>
 4 #define MAXN 50000+5
 5 #define M 30*40000+100
 6 using namespace std;
 7 int n,a[MAXN],c[30*40000+100];
 8 int lowbit(int x){return x&(-x);}
 9 void add(int i,int val)
10 {
11     while(i<=M)
12     {
13         c[i]+=val;
14         i+=lowbit(i);
15     }
16 }
17 int sum(int i)
18 {
19     int s=0;
20     while(i>0)
21     {
22         s+=c[i];
23         i-=lowbit(i);
24     }
25     return s;
26 }
27 char op[6];
28 int main()
29 {
30     int t;
31     cin>>t;
32     for(int kase=1;kase<=t;kase++)
33     {
34         scanf("%d",&n);
35         memset(c,0,sizeof(c));
36         for(int i=1;i<=n;i++){
37             scanf("%d",&a[i]);
38             add(i,a[i]);
39         }
40         printf("Case %d:\n",kase);
41         while(scanf("%s",op))
42         {
43             if(op[0]==‘E‘) break;
44             if(op[0]==‘Q‘)
45             {
46                 int l,r;
47                 scanf("%d%d",&l,&r);
48                 printf("%d\n",sum(r)-sum(l-1));
49             }
50             else if(op[0]==‘A‘)
51             {
52                 int pos,x;
53                 scanf("%d%d",&pos,&x);
54                 add(pos,x);
55             }
56             else if(op[0]==‘S‘)
57             {
58                 int pos,x;
59                 scanf("%d%d",&pos,&x);
60                 add(pos,-x);
61             }
62         }
63     }
64 }

当然还是得用线段树做一遍的:

  1 #include<cstdio>
  2 #include<iostream>
  3 #include<cstring>
  4 #define MAXN 50000+5
  5 using namespace std;
  6 int n,a[MAXN];
  7 struct Node{
  8     int l,r;
  9     int sum,lazy;
 10     void update(int x)
 11     {
 12         sum+=(r-l+1)*x;
 13         lazy+=x;
 14     }
 15 }node[4*MAXN];
 16 void pushdown(int root)
 17 {
 18     if(node[root].lazy)
 19     {
 20         node[root*2].update(node[root].lazy);
 21         node[root*2+1].update(node[root].lazy);
 22         node[root].lazy=0;
 23     }
 24 }
 25 void pushup(int root)
 26 {
 27     node[root].sum=node[root*2].sum+node[root*2+1].sum;
 28 }
 29 void build(int root,int l,int r)
 30 {
 31     node[root].l=l; node[root].r=r;
 32     node[root].sum=0; node[root].lazy=0;
 33     if(l==r) node[root].sum=a[l];
 34     else
 35     {
 36         int mid=l+(r-l)/2;
 37         build(root*2,l,mid);
 38         build(root*2+1,mid+1,r);
 39         pushup(root);
 40     }
 41 }
 42 void update(int root,int st,int ed,int val)
 43 {
 44     if(st>node[root].r || ed<node[root].l) return;
 45     if(st<=node[root].l && node[root].r<=ed) node[root].update(val);
 46     else
 47     {
 48         pushdown(root);
 49         update(root*2,st,ed,val);
 50         update(root*2+1,st,ed,val);
 51         pushup(root);
 52     }
 53 }
 54 int query(int root,int st,int ed)
 55 {
 56     if(ed<node[root].l || node[root].r<st) return 0;
 57     if(st<=node[root].l && node[root].r<=ed) return node[root].sum;
 58     else
 59     {
 60         int ans=0;
 61         pushdown(root);
 62         ans+=query(root*2,st,ed);
 63         ans+=query(root*2+1,st,ed);
 64         pushup(root);
 65         return ans;
 66     }
 67 }
 68 char op[6];
 69 int main()
 70 {
 71     int t;
 72     cin>>t;
 73     for(int kase=1;kase<=t;kase++)
 74     {
 75         scanf("%d",&n);
 76         for(int i=1;i<=n;i++) scanf("%d",&a[i]);
 77         build(1,1,n);
 78         printf("Case %d:\n",kase);
 79         while(scanf("%s",op))
 80         {
 81             if(op[0]==‘E‘) break;
 82             if(op[0]==‘Q‘)
 83             {
 84                 int l,r;
 85                 scanf("%d%d",&l,&r);
 86                 printf("%d\n",query(1,l,r));
 87             }
 88             else if(op[0]==‘A‘)
 89             {
 90                 int pos,x;
 91                 scanf("%d%d",&pos,&x);
 92                 update(1,pos,pos,x);
 93             }
 94             else if(op[0]==‘S‘)
 95             {
 96                 int pos,x;
 97                 scanf("%d%d",&pos,&x);
 98                 update(1,pos,pos,-x);
 99             }
100         }
101     }
102 }

这里可以看出线段树和树状数组的速度比较:

时间: 2024-10-18 07:46:05

HDU 1166 - 敌兵布阵的相关文章

hdu 1166:敌兵布阵(树状数组,练习题)

敌兵布阵 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 37773    Accepted Submission(s): 15923 Problem Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了.A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务就

hdu 1166 敌兵布阵 解题报告

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1166 题目意思:给出 N 个数你,通过对某些数进行更改(或者 + 或者 -),当输入的是 Query 的时候,需要计算出 某个区间的和. 树状数组第一题,算是模板吧 ^_^ 有个小细节,wa 了几次,细心~细心~~~细心 1 #include <iostream> 2 #include <cstdio> 3 #include <cstdlib> 4 #include <

hdu 1166 敌兵布阵 线段树 点更新

// hdu 1166 敌兵布阵 线段树 点更新 // // 这道题裸的线段树的点更新,直接写就可以了 // // 一直以来想要进线段树的坑,结果一直没有跳进去,今天算是跳进去吧, // 虽然十分简单,十分的水,继续加油 #include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <cfloat> #include <climits

HDU 1166 敌兵布阵 (线段树 &amp; 树状数组)

敌兵布阵 Time Limit:1000MS    Memory Limit:32768KB    64bit IO Format:%I64d & %I64u SubmitStatus 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1166 Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了.A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务就是要监视这些工兵营地的

HDU 1166 敌兵布阵(线段树)

Problem Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了.A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务就是要监视这些工兵营地的活动情况.由于采取了某种先进的监测手段,所以每个工兵营地的人数C国都掌握的一清二楚,每个工兵营地的人数都有可能发生变动,可能增加或减少若干人手,但这些都逃不过C国的监视. 中央情报局要研究敌人究竟演习什么战术,所以Tidy要随时向Derek汇报某一段连续的工兵营地一共有多少

HDU 1166 敌兵布阵 (线段树 单点更新)

题目链接 线段树掌握的很差,打算从头从最简单的开始刷一波, 嗯..就从这个题开始吧! 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <queue> 5 #include <cstdlib> 6 #include <algorithm> 7 const int maxn = 50000+10; 8 using namespace std

HDU 1166 敌兵布阵(线段树的初步应用2)

HDU  1166  敌兵布阵 Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了.A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务就是要监视这些工兵营地的活动情况.由于采取了某种先进的监测手段,所以每个工兵营地的人数C国都掌握的一清二楚,每个工兵营地的人数都有可能发生变动,可能增加或减少若干人手,但这些都逃不过C国的监视. 中央情报局要研究敌人究竟演习什么战术,所以Tidy要随时向Derek汇报某一段连续的工

[HDU 1166 敌兵布阵] 线段树 或 树状数组

1 #include<iostream> 2 #include<cstdio> 3 #include<memory.h> 4 using namespace std; 5 int n,C[50005]; 6 //-------------------------- 7 int lowbit(int x){ 8 return x&-x; 9 } 10 int sum(int x){ 11 int ret=0; 12 while(x>0){ 13 ret+=C

HDU 1166 敌兵布阵 Segment Tree题解

本题是最基本的分段树操作了.或者一般叫线段树,不过好像和线段没什么关系,只是分段了. 不使用lazy标志,更新只是更新单点. 如果不使用分段树,那么更新时间效率只需要O(1),使用分段树更新效率就需要O(lgn)了. 但是不是用分段树,那么查询的时间效率是O(n),而分段树查询效率是O(lgn) 这就是amortize分摊了时间,而且lgn真的很快,数据不是非常巨大的时候,接近常数了. 故此本题需要使用分段树. #include <cstdio> class EnemyInfo { stati

hdu 1166 敌兵布阵(线段树之 单点更新+区间求和)

敌兵布阵                                                                             Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Problem Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了.A国在海岸线沿直线布置了N个工兵