zoukankan      html  css  js  c++  java
  • 线段树专题

    线段树的风格是跟NotOnlySuccess学的

    单点更新:最最基础的线段树,只更新叶子节点,然后把信息用PushUP(int r)这个函数更新上来

    1、hdu1166 敌兵布阵

    C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了。A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务就是要监视这些工兵营地的活动情况。由于采取了某种先进的监测手段,所以每个工兵营地的人数C国都掌握的一清二楚,每个工兵营地的人数都有可能发生变动,可能增加或减少若干人手,但这些都逃不过C国的监视。
    中央情报局要研究敌人究竟演习什么战术,所以Tidy要随时向Derek汇报某一段连续的工兵营地一共有多少人,例如Derek问:“Tidy,马上汇报第3个营地到第10个营地共有多少人!”Tidy就要马上开始计算这一段的总人数并汇报。但敌兵营地的人数经常变动,而Derek每次询问的段都不一样,所以Tidy不得不每次都一个一个营地的去数,很快就精疲力尽了,Derek对Tidy的计算速度越来越不满:"你个死肥仔,算得这么慢,我炒你鱿鱼!”Tidy想:“你自己来算算看,这可真是一项累人的工作!我恨不得你炒我鱿鱼呢!”无奈之下,Tidy只好打电话向计算机专家Windbreaker求救,Windbreaker说:“死肥仔,叫你平时做多点acm题和看多点算法书,现在尝到苦果了吧!”Tidy说:"我知错了。。。"但Windbreaker已经挂掉电话了。Tidy很苦恼,这么算他真的会崩溃的,聪明的读者,你能写个程序帮他完成这项工作吗?不过如果你的程序效率不够高的话,Tidy还是会受到Derek的责骂的.
     
    Input
    第一行一个整数T,表示有T组数据。
    每组数据第一行一个正整数N(N<=50000),表示敌人有N个工兵营地,接下来有N个正整数,第i个正整数ai代表第i个工兵营地里开始时有ai个人(1<=ai<=50)。
    接下来每行有一条命令,命令有4种形式:
    (1) Add i j,i和j为正整数,表示第i个营地增加j个人(j不超过30)
    (2)Sub i j ,i和j为正整数,表示第i个营地减少j个人(j不超过30);
    (3)Query i j ,i和j为正整数,i<=j,表示询问第i到第j个营地的总人数;
    (4)End 表示结束,这条命令在每组数据最后出现;
    每组数据最多有40000条命令
     
    Output
    对第i组数据,首先输出“Case i:”和回车,
    对于每个Query询问,输出一个整数并回车,表示询问的段中的总人数,这个数保持在int以内。
     
    Sample Input
    1
    10
    1 2 3 4 5 6 7 8 9 10
    Query 1 3
    Add 3 6
    Query 2 7
    Sub 10 2
    Add 6 3
    Query 3 10
    End
     
    Sample Output
    Case 1:
    6
    33
    59
    分析:
    1.Add i,j sum[i]+=j
    2.Sub i,j sum[i]-=j
    3.Query i,j sum[i]+sum[i+1]....sum[j]
    最简单的单点更新+区间求和用来入门还是很不错的。
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #define lson l,m,rt<<1
     5 #define rson m+1,r,rt<<1|1
     6 #define maxlen 50010
     7 using namespace std;
     8 int sum[maxlen<<2];
     9 void pushup(int rt)
    10 {
    11     sum[rt]=sum[rt<<1]+sum[rt<<1|1];
    12 }
    13 void build(int l,int r,int rt)
    14 {
    15     if(l==r)
    16     {
    17         scanf("%d",&sum[rt]);
    18         return ;
    19     }
    20     int m=(l+r)>>1;
    21     build(lson);
    22     build(rson);
    23     pushup(rt);
    24 }
    25 void update(int p,int add,int l,int r,int rt)
    26 {
    27     if(l==r)
    28     {
    29         sum[rt]+=add;
    30         return;
    31     }
    32     int m=(l+r)>>1;
    33     if(p<=m)
    34         update(p,add,lson);
    35     else
    36         update(p,add,rson);
    37     pushup(rt);
    38 }
    39 int query(int L,int R,int l,int r,int rt)
    40 {
    41     if(L<=l&&r<=R)//查询区间大于当前区间直接返回根节点值
    42         return sum[rt];
    43     int m=(l+r)>>1;
    44     int ans=0;
    45     if(L<=m)
    46         ans+=query(L,R,lson);
    47     if(R>m)
    48         ans+=query(L,R,rson);
    49     return ans;
    50 }
    51 int main ()
    52 {
    53     int t,n;
    54     char cmd[10];
    55     scanf("%d",&t);
    56     for(int Case=1;Case<=t;++Case)
    57     {
    58         printf("Case %d:
    ",Case);
    59         scanf("%d",&n);
    60         build(1,n,1);
    61         while(scanf("%s",&cmd))
    62         {
    63             if(cmd[0]=='E')
    64                 break;
    65             int x,y;
    66             scanf("%d%d",&x,&y);
    67             if(cmd[0]=='Q')
    68                 printf("%d
    ",query(x,y,1,n,1));
    69             else if(cmd[0]=='S')
    70                 update(x,-y,1,n,1);
    71             else
    72                 update(x,y,1,n,1);
    73         }
    74     }
    75 }
    View Code

    2、hdu1754 I Hate It

    Problem Description
    很多学校流行一种比较的习惯。老师们很喜欢询问,从某某到某某当中,分数最高的是多少。
    这让很多学生很反感。

    不管你喜不喜欢,现在需要你做的是,就是按照老师的要求,写一个程序,模拟老师的询问。当然,老师有时候需要更新某位同学的成绩。
     
    Input
    本题目包含多组测试,请处理到文件结束。
    在每个测试的第一行,有两个正整数 N 和 M ( 0<N<=200000,0<M<5000 ),分别代表学生的数目和操作的数目。
    学生ID编号分别从1编到N。
    第二行包含N个整数,代表这N个学生的初始成绩,其中第i个数代表ID为i的学生的成绩。
    接下来有M行。每一行有一个字符 C (只取'Q'或'U') ,和两个正整数A,B。
    当C为'Q'的时候,表示这是一条询问操作,它询问ID从A到B(包括A,B)的学生当中,成绩最高的是多少。
    当C为'U'的时候,表示这是一条更新操作,要求把ID为A的学生的成绩更改为B。
     
    Output
    对于每一次询问操作,在一行里面输出最高成绩。
     
    Sample Input
    5 6
    1 2 3 4 5
    Q 1 5
    U 3 6
    Q 3 4
    Q 4 5
    U 2 9
    Q 1 5
     
    Sample Output
    5
    6
    5
    9
    分析:
    1.U i,j sum[i]=j
    2.Q i,j max(i,i+,1...,j)
    最简单的单点更新+区间求最大值,跟基本上面一样,只是把维护的变为区间最大值。
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 #define lson l,m,rt<<1
     6 #define rson m+1,r,rt<<1|1
     7 #define maxlen 200010
     8 using namespace std;
     9 int sum[maxlen<<2];
    10 void pushup(int rt)
    11 {
    12     sum[rt]=max(sum[rt<<1],sum[rt<<1|1]);
    13 }
    14 void build(int l,int r,int rt)
    15 {
    16     if(l==r)
    17     {
    18         scanf("%d",&sum[rt]);
    19         return ;
    20     }
    21     int m=(l+r)>>1;
    22     build(lson);
    23     build(rson);
    24     pushup(rt);
    25 }
    26 void update(int p,int add,int l,int r,int rt)
    27 {
    28     if(l==r)
    29     {
    30         sum[rt]=add;
    31         return;
    32     }
    33     int m=(l+r)>>1;
    34     if(p<=m)
    35         update(p,add,lson);
    36     else
    37         update(p,add,rson);
    38     pushup(rt);
    39 }
    40 int query(int L,int R,int l,int r,int rt)
    41 {
    42     if(L<=l&&r<=R)
    43         return sum[rt];
    44     int m=(l+r)>>1;
    45     int ans=0;
    46     if(L<=m)
    47         ans=max(ans,query(L,R,lson));
    48     if(R>m)
    49         ans=max(ans,query(L,R,rson));
    50     return ans;
    51 }
    52 int main ()
    53 {
    54     int t,n,m;
    55     char cmd[2];
    56     while(scanf("%d%d",&n,&m)!=EOF)
    57     {
    58         build(1,n,1);
    59         while(m--)
    60         {
    61             int x,y;
    62             scanf("%s%d%d",cmd,&x,&y);
    63             if(cmd[0]=='Q')
    64                 printf("%d
    ",query(x,y,1,n,1));
    65             else
    66                 update(x,y,1,n,1);
    67         }
    68     }
    69 }
    View Code

    3、hdu1394 Minimum Inversion Number

    Problem Description
    The inversion number of a given number sequence a1, a2, ..., an is the number of pairs (ai, aj) that satisfy i < j and ai > aj.

    For a given sequence of numbers a1, a2, ..., an, if we move the first m >= 0 numbers to the end of the seqence, we will obtain another sequence. There are totally n such sequences as the following:

    a1, a2, ..., an-1, an (where m = 0 - the initial seqence)
    a2, a3, ..., an, a1 (where m = 1)
    a3, a4, ..., an, a1, a2 (where m = 2)
    ...
    an, a1, a2, ..., an-1 (where m = n-1)

    You are asked to write a program to find the minimum inversion number out of the above sequences.
     
    Input
    The input consists of a number of test cases. Each case consists of two lines: the first line contains a positive integer n (n <= 5000); the next line contains a permutation of the n integers from 0 to n-1.
     
    Output
    For each case, output the minimum inversion number on a single line.
     
    Sample Input
    10
    1 3 6 9 0 8 5 7 4 2
     
    Sample Output
    16

    题目大意:给你n个数(0~n-1)组成一个序列,每次把第一个数移到最后去,这样可以得到n个序列,问这些序列中最小的逆序数。

    分析:首先来说一下逆序数的求法

    例如要求x的逆序数只需要访问(x+1,n)段有多少个数,就是x的逆序数。还有就是求最小逆序数的时候有个巧妙的想法,当把x放入数组的后面,此时的逆序数应该为x没放入最后面之前的逆序总数加上(n-x)再减去(x-1);sum = sum+(n-x[i])-(x[i]-1)。

    先上一个暴力的,复杂度O(n^2) 300ms+

     1 #include <iostream>
     2 #include <cstdio>
     3 #define maxlen 5010
     4 using namespace std;
     5 int s[maxlen];
     6 int n,ans,cnt;
     7 int main()
     8 {
     9     while(scanf("%d",&n)!=EOF)
    10     {
    11         cnt=0,ans=99999999;
    12         for(int i=1;i<=n;i++)
    13             scanf("%d",&s[i]);
    14         for(int i=1;i<=n;i++)
    15             for(int j=i+1;j<=n;j++)
    16                if(s[i]>s[j]) cnt++;
    17         for(int i=1;i<=n;i++)
    18         {
    19             cnt=cnt-s[i]+n-s[i]-1;
    20             ans=min(cnt,ans);
    21         }
    22         printf("%d
    ",ans);
    23     }
    24     return 0;
    25 }
    View Code

    线段树 复杂度O(nlogn) 30ms+

    单点更新+区间求和

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 #define maxlen 5010
     6 #define lson l,m,rt<<1
     7 #define rson m+1,r,rt<<1|1
     8 int sum[maxlen<<2];
     9 int s[maxlen];
    10 void pushup(int rt)
    11 {
    12     sum[rt]=sum[rt<<1]+sum[rt<<1|1];
    13 }
    14 void build(int l,int r,int rt)
    15 {
    16     sum[rt]=0;
    17     if(l==r)
    18         return ;
    19     int m=(l+r)>>1;
    20     build(lson);
    21     build(rson);
    22 }
    23 void update(int p,int l,int r,int rt)
    24 {
    25     if(l==r)
    26     {
    27         sum[rt]++;
    28         return ;
    29     }
    30     int m=(l+r)>>1;
    31     if(p<=m)
    32         update(p,lson);
    33     else
    34         update(p,rson);
    35     pushup(rt);
    36 }
    37 int query(int L,int R,int l,int r,int rt)
    38 {
    39     if(L<=l&&r<=R)
    40         return sum[rt];
    41     int m=(l+r)>>1;
    42     int ans=0;
    43     if(L<=m)
    44         ans+=query(L,R,lson);
    45     if (R>m)
    46         ans+=query(L,R,rson);
    47     return ans;
    48 }
    49 using namespace std;
    50 int main ()
    51 {
    52     int n;
    53     while(scanf("%d",&n)!=EOF)
    54     {
    55         build(0,n-1,1);
    56         int sum=0;
    57         for(int i=0; i<n; ++i)
    58         {
    59             scanf("%d",&s[i]);
    60             sum+=query(s[i],n-1,0,n-1,1);
    61             update(s[i],0,n-1,1);
    62         }
    63         int ans=sum;
    64         for(int i=0; i<n; ++i)
    65         {
    66             sum+=n-s[i]-s[i]-1;
    67             ans=min(ans,sum);
    68         }
    69         printf("%d
    ",ans);
    70     }
    71 }
    View Code

    4、hdu2795 Billboard

    Problem Description
    At the entrance to the university, there is a huge rectangular billboard of size h*w (h is its height and w is its width). The board is the place where all possible announcements are posted: nearest programming competitions, changes in the dining room menu, and other important information.

    On September 1, the billboard was empty. One by one, the announcements started being put on the billboard.

    Each announcement is a stripe of paper of unit height. More specifically, the i-th announcement is a rectangle of size 1 * wi.

    When someone puts a new announcement on the billboard, she would always choose the topmost possible position for the announcement. Among all possible topmost positions she would always choose the leftmost one.

    If there is no valid location for a new announcement, it is not put on the billboard (that's why some programming contests have no participants from this university).

    Given the sizes of the billboard and the announcements, your task is to find the numbers of rows in which the announcements are placed.
     
    Input
    There are multiple cases (no more than 40 cases).

    The first line of the input file contains three integer numbers, h, w, and n (1 <= h,w <= 10^9; 1 <= n <= 200,000) - the dimensions of the billboard and the number of announcements.

    Each of the next n lines contains an integer number wi (1 <= wi <= 10^9) - the width of i-th announcement.
     
    Output
    For each announcement (in the order they are given in the input file) output one number - the number of the row in which this announcement is placed. Rows are numbered from 1 to h, starting with the top row. If an announcement can't be put on the billboard, output "-1" for this announcement.
     
    Sample Input
    3 5 5
    2
    4
    3
    3
    3
     
    Sample Output
    1
    2
    1
    3
    -1

    题目大意:给你h*w的矩形,现在在上面贴1*L的告示,每次优先选择最左上的位置,输出输在的行号,如果不能贴输出-1

    分析:

    1. 利用线段树可以求区间的最大值; 
    2. 将位置即h用来建树(h<=n,大了没有意义); 
    3. 树中存储的为该位置还拥有的空间; (没贴一次减去L)
    4. 若左子树的最大值大于他,就查询左子树,否则查询右子树;

    线段树 ,单点更新+区间最大值 2500ms+

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 #define maxlen 200010
     6 #define lson l,m,rt<<1
     7 #define rson m+1,r,rt<<1|1
     8 using namespace std;
     9 int sum[maxlen<<2];
    10 int h,w,n;
    11 void pushup(int rt)
    12 {
    13     sum[rt]=max(sum[rt<<1],sum[rt<<1|1]);
    14 }
    15 void build(int l,int r,int rt)
    16 {
    17     sum[rt]=w;
    18     if(l==r)
    19         return ;
    20     int m=(l+r)>>1;
    21     build(lson);
    22     build(rson);
    23 }
    24 int query(int x,int l,int r,int rt)
    25 {
    26     if(l==r)
    27     {
    28         sum[rt]-=x;
    29         return l;
    30     }
    31     int m=(l+r)>>1;
    32     int ans=0;
    33     if(sum[rt<<1]>=x)
    34         ans=query(x,lson);
    35     else
    36         ans=query(x,rson);
    37     pushup(rt);
    38     return ans;
    39 }
    40 int main ()
    41 {
    42     int x;
    43     while(scanf("%d%d%d",&h,&w,&n)!=EOF)
    44     {
    45         if(h>n)
    46             h=n;
    47         build(1,h,1);
    48         while(n--)
    49         {
    50             scanf("%d",&x);
    51             if(sum[1]<x)
    52                 printf("-1
    ");
    53             else
    54                 printf("%d
    ",query(x,1,h,1));
    55         }
    56     }
    57 }
    View Code

    成段更新:

    第一次写,学到了一个叫做懒惰标记或者叫做延时标记的东西,所谓的延时标记就是更新的时候不是更新到最底层的叶子节点,而是当覆盖整个子区间的时候做一个标记,当有一次update或者query到这个区间的时候把标记传递下去。

    hdu1698 Just a Hook

    Problem Description
    In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of the heroes. The hook is made up of several consecutive metallic sticks which are of the same length.



    Now Pudge wants to do some operations on the hook.

    Let us number the consecutive metallic sticks of the hook from 1 to N. For each operation, Pudge can change the consecutive metallic sticks, numbered from X to Y, into cupreous sticks, silver sticks or golden sticks.
    The total value of the hook is calculated as the sum of values of N metallic sticks. More precisely, the value for each kind of stick is calculated as follows:

    For each cupreous stick, the value is 1.
    For each silver stick, the value is 2.
    For each golden stick, the value is 3.

    Pudge wants to know the total value of the hook after performing the operations.
    You may consider the original hook is made up of cupreous sticks.
     
    Input
    The input consists of several test cases. The first line of the input is the number of the cases. There are no more than 10 cases.
    For each case, the first line contains an integer N, 1<=N<=100,000, which is the number of the sticks of Pudge’s meat hook and the second line contains an integer Q, 0<=Q<=100,000, which is the number of the operations.
    Next Q lines, each line contains three integers X, Y, 1<=X<=Y<=N, Z, 1<=Z<=3, which defines an operation: change the sticks numbered from X to Y into the metal kind Z, where Z=1 represents the cupreous kind, Z=2 represents the silver kind and Z=3 represents the golden kind.
     
    Output
    For each case, print a number in a line representing the total value of the hook after the operations. Use the format in the example.
     
    Sample Input
    1
    10
    2
    1 5 2
    5 9 3
     
    Sample Output
    Case 1: The total value of the hook is 24.
     
    Source

    题目大意:

    定义操作 i j  x把i~j区间的奖牌颜色变为x(1/2/3)

    给你n个数(1~n)以及Q个操作最后求1~n 的奖牌加权和(权值就是颜色编号)

    分析:

    线段树 区间替换+求和

    利用上面说的延时标记更新结点,区间求和跟上面的一样,这里只有一次询问且询问区间为[1,n],所以更新完后最终答案就是根结点的sum[1]。

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #define maxlen 100010
     5 #define lson l,m,rt<<1
     6 #define rson m+1,r,rt<<1|1
     7 using namespace std;
     8 int sum[maxlen<<2];
     9 int col[maxlen<<2];
    10 void pushup(int rt)
    11 {
    12     sum[rt]=sum[rt<<1]+sum[rt<<1|1];
    13 }
    14 void pushdown(int rt,int m)
    15 {
    16     if(col[rt])
    17     {
    18         col[rt<<1]=col[rt<<1|1]=col[rt];
    19         sum[rt<<1]=(m-(m>>1))*col[rt];
    20         sum[rt<<1|1]=(m>>1)*col[rt];
    21         col[rt]=0;
    22     }
    23 }
    24 void build(int l,int  r,int rt)
    25 {
    26     sum[rt]=1;
    27     col[rt]=0;
    28     if(l==r)
    29         return ;
    30     int m=(l+r)>>1;
    31     build(lson);
    32     build(rson);
    33 }
    34 void update(int L,int R,int c,int l,int r,int rt)
    35 {
    36     if(L<=l&&r<=R)
    37     {
    38         col[rt]=c;
    39         sum[rt]=c*(r-l+1);
    40         return ;
    41     }
    42     pushdown(rt,r-l+1);
    43     int m=(l+r)>>1;
    44     if(L<=m)
    45         update(L,R,c,lson);
    46     if(R>m)
    47         update(L,R,c,rson);
    48     pushup(rt);
    49 }
    50 int main ()
    51 {
    52     int t,n,m;
    53     scanf("%d",&t);
    54     for(int Case=1;Case<=t;++Case)
    55     {
    56         scanf("%d%d",&n,&m);
    57         build(1,n,1);
    58         while(m--)
    59         {
    60             int a,b,c;
    61             scanf("%d%d%d",&a,&b,&c);
    62             update(a,b,c,1,n,1);
    63         }
    64         printf("Case %d: The total value of the hook is %d.
    ",Case,sum[1]);
    65     }
    66 }
    View Code

    poj3468 A Simple Problem with Integers

    Description

    You have N integers, A1A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number in a given interval. The other is to ask for the sum of numbers in a given interval.

    Input

    The first line contains two numbers N and Q. 1 ≤ N,Q ≤ 100000.
    The second line contains N numbers, the initial values of A1A2, ... , AN. -1000000000 ≤ Ai ≤ 1000000000.
    Each of the next Q lines represents an operation.
    "C a b c" means adding c to each of AaAa+1, ... , Ab. -10000 ≤ c ≤ 10000.
    "Q a b" means querying the sum of AaAa+1, ... , Ab.

    Output

    You need to answer all Q commands in order. One answer in a line.

    Sample Input

    10 5
    1 2 3 4 5 6 7 8 9 10
    Q 4 4
    Q 1 10
    Q 2 4
    C 3 6 3
    Q 2 4
    

    Sample Output

    4
    55
    9
    15

    题目大意:

    1、Q i  j   sum[i]+sum[i+1]+...+sum[j]

    2、C i j c  sum[k]+=c   i<=k<=j

    分析:跟上面的类似,成段的加减+区间求和

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 #define maxlen 100010
     6 #define lson l,m,rt<<1
     7 #define rson m+1,r,rt<<1|1
     8 using namespace std;
     9 long long sum[maxlen<<2];
    10 long long add[maxlen<<2];
    11 void pushup(int rt)
    12 {
    13     sum[rt]=sum[rt<<1]+sum[rt<<1|1];
    14 }
    15 void pushdown(int rt,int m)
    16 {
    17     if(add[rt])
    18     {
    19         add[rt<<1]+=add[rt];
    20         add[rt<<1|1]+=add[rt];
    21         sum[rt<<1]+=add[rt]*(m-(m>>1));
    22         sum[rt<<1|1]+=add[rt]*(m>>1);
    23         add[rt]=0;
    24     }
    25 }
    26 void build(int l,int r,int rt)
    27 {
    28     add[rt]=0;
    29     if(l==r)
    30     {
    31         scanf("%I64d",&sum[rt]);
    32         return ;
    33     }
    34     int m=(l+r)>>1;
    35     build(lson);
    36     build(rson);
    37     pushup(rt);
    38 }
    39 void update(int L,int R,int c,int l,int r,int rt)
    40 {
    41     if(L<=l&&r<=R)
    42     {
    43         add[rt]+=c;
    44         sum[rt]+=c*(r-l+1);
    45         return ;
    46     }
    47     pushdown(rt,r-l+1);
    48     int m=(l+r)>>1;
    49     if(L<=m)
    50         update(L,R,c,lson);
    51     if(m<R)
    52         update(L,R,c,rson);
    53     pushup(rt);
    54 }
    55 long long  query(int L,int R,int l,int r,int rt)
    56 {
    57     if(L<=l&&r<=R)
    58         return sum[rt];
    59     pushdown(rt,r-l+1);
    60     int m=(l+r)>>1;
    61     long long ans=0;
    62     if(L<=m)
    63         ans+=query(L,R,lson);
    64     if(m<R)
    65         ans+=query(L,R,rson);
    66     return ans;
    67 }
    68 int main ()
    69 {
    70     int n,m;
    71     while(scanf("%d%d",&n,&m)!=EOF)
    72     {
    73         build(1,n,1);
    74         while(m--)
    75         {
    76             char cmd[10];
    77             int a,b,c;
    78             scanf("%s",cmd);
    79             if(cmd[0]=='Q')
    80             {
    81                 scanf("%d%d",&a,&b);
    82                 printf("%I64d
    ",query(a,b,1,n,1));
    83             }
    84             else if(cmd[0]=='C')
    85             {
    86                 scanf("%d%d%d",&a,&b,&c);
    87                 update(a,b,c,1,n,1);
    88             }
    89         }
    90     }
    91 }
    View Code 

    poj3667 Hotel

    题意:

    1 a:询问是不是有连续长度为a的空房间,有的话住进最左边
    2 a b:将[a,a+b-1]的房间清空
    思路:记录区间中最长的空房间
    线段树操作:update:区间替换 query:询问满足条件的最左断点

    msum[i]表示以根结点编号为i的剩余最大房间数

    lsum[i]表示前缀最大房间数

    rsum[i]表示后缀最大房间数

    col[i]为染色标记,-1表示初始,1表示有人住,0表示没有人主。

    主要就区间合并的问题,将左半边的与右半边的合并

    如果rsum[left son]+lsum[right son]>=d 那么就说明存在这样一个横跨两棵子树的区间,由于我们知道左子树最右边点的坐标x,那么这个连续空区间的第一个位置自然就是x-rsum[left son]+1。

      1 #include <iostream>
      2 #include <cstdio>
      3 #include <cstring>
      4 #include <algorithm>
      5 #define maxlen 60010
      6 #define lson l,m,rt<<1
      7 #define rson m+1,r,rt<<1|1
      8 using namespace std;
      9 int msum[maxlen<<2],lsum[maxlen<<2],rsum[maxlen<<2],col[maxlen<<2];
     10 int max(int a,int b)
     11 {
     12     return a>b?a:b;
     13 }
     14 void pushdown(int rt,int m)
     15 {
     16     if(col[rt]!=-1)
     17     {
     18         col[rt<<1]=col[rt<<1|1]=col[rt];
     19         msum[rt<<1]=lsum[rt<<1]=rsum[rt<<1]=col[rt]?0:m-(m>>1);
     20         msum[rt<<1|1]=lsum[rt<<1|1]=rsum[rt<<1|1]=col[rt]?0:(m>>1);
     21         col[rt]=-1;
     22     }
     23 }
     24 void pushup(int rt,int m)
     25 {
     26     lsum[rt]=lsum[rt<<1];
     27     rsum[rt]=rsum[rt<<1|1];
     28     if(lsum[rt]==m-(m>>1))
     29         lsum[rt]+=lsum[rt<<1|1];
     30     if(rsum[rt]==(m>>1))
     31         rsum[rt]+=rsum[rt<<1];
     32     msum[rt]=max(lsum[rt<<1|1]+rsum[rt<<1],max(msum[rt<<1],msum[rt<<1|1]));
     33 }
     34 
     35 void build(int l,int r,int rt)
     36 {
     37     msum[rt]=lsum[rt]=rsum[rt]=r-l+1;
     38     col[rt]=-1;
     39     if(l==r)
     40         return ;
     41     int m=(l+r)>>1;
     42     build(lson);
     43     build(rson);
     44 }
     45 void update(int L,int R,int c,int l,int r,int rt)
     46 {
     47     if(L<=l&&r<=R)
     48     {
     49         msum[rt]=lsum[rt]=rsum[rt]=c?0:(r-l+1);
     50         col[rt]=c;
     51         return ;
     52     }
     53     pushdown(rt,r-l+1);
     54     int m=(l+r)>>1;
     55     if(L<=m)
     56         update(L,R,c,lson);
     57     if(m<R)
     58         update(L,R,c,rson);
     59     pushup(rt,r-l+1);
     60 }
     61 int query(int sum,int l,int r,int rt)
     62 {
     63     if(l==r)
     64         return l;
     65     pushdown(rt,r-l+1);
     66     int m=(l+r)>>1;
     67     if(msum[rt<<1]>=sum)
     68         return query(sum,lson);
     69     else if(rsum[rt<<1]+lsum[rt<<1|1]>=sum)
     70         return m-rsum[rt<<1]+1;
     71     return query(sum,rson);
     72 }
     73 int main ()
     74 {
     75     int n,m;
     76     while(scanf("%d%d",&n,&m)!=EOF)
     77     {
     78         int cmd,x,y;
     79         build(1,n,1);
     80         while(m--)
     81         {
     82             scanf("%d",&cmd);
     83             if(cmd==1)
     84             {
     85                 scanf("%d",&x);
     86                 if(msum[1]<x)
     87                     printf("0
    ");
     88                 else
     89                 {
     90                     int ans=query(x,1,n,1);
     91                     printf("%d
    ",ans);
     92                     update(ans,ans+x-1,1,1,n,1);
     93                 }
     94             }
     95             else
     96             {
     97                 scanf("%d%d",&x,&y);
     98                 update(x,x+y-1,0,1,n,1);
     99             }
    100         }
    101     }
    102 }
    View Code

    未完待续...

     
  • 相关阅读:
    mysql 之 union 分类: database 测试 2014-02-12 11:59 218人阅读 评论(0) 收藏
    MySql模糊查询like通配符使用详细介绍 分类: database 测试 2014-02-12 10:19 6829人阅读 评论(1) 收藏
    sed(查找替换) 与awk(提取字段) 分类: ubuntu 测试 2014-02-11 12:08 4074人阅读 评论(0) 收藏
    Linux命令行uniq 分类: ubuntu 测试 2014-02-10 17:52 341人阅读 评论(0) 收藏
    n&1判断奇偶 分类: python基础学习 测试 2014-02-10 15:41 636人阅读 评论(0) 收藏
    vue-cli安装
    input事件
    Edusohu搭建
    Ngxin代理服务基本概述
    五种IO模型---转载
  • 原文地址:https://www.cnblogs.com/shuzy/p/3252797.html
Copyright © 2011-2022 走看看