poj3667 线段树 区间合并

  1 //Accepted    3728 KB    1079 ms
  2 //线段树 区间合并
  3 #include <cstdio>
  4 #include <cstring>
  5 #include <iostream>
  6 #include <queue>
  7 #include <cmath>
  8 #include <algorithm>
  9 using namespace std;
 10 /**
 11   * This is a documentation comment block
 12   * 如果有一天你坚持不下去了,就想想你为什么走到这儿!
 13   * @authr songt
 14   */
 15 const int imax_n = 500005;
 16 struct node
 17 {
 18     int l,r;
 19     int L1,R1;
 20     int sum1;
 21     int change;   //change -1 区间没有改变  0区间变成0 1区间变成1
 22 }f[imax_n*4];
 23 int max(int a,int b)
 24 {
 25     return a>b?a:b;
 26 }
 27 int min(int a,int b)
 28 {
 29     return a<b?a:b;
 30 }
 31 void swap(int &a,int &b)
 32 {
 33     int t=a;
 34     a=b;
 35     b=t;
 36 }
 37 void pushUp(int t)
 38 {
 39     int lLen=f[2*t].r-f[2*t].l+1;
 40     int rLen=f[2*t+1].r-f[2*t+1].l+1;
 41     f[t].L1=f[2*t].L1;
 42     if (f[2*t].L1==lLen) f[t].L1+=f[2*t+1].L1;
 43     f[t].R1=f[2*t+1].R1;
 44     if (f[2*t+1].R1==rLen) f[t].R1+=f[2*t].R1;
 45     f[t].sum1=max(f[2*t].sum1,f[2*t+1].sum1);
 46     f[t].sum1=max(f[t].sum1,f[2*t].R1+f[2*t+1].L1);
 47 }
 48 void pushDown(int t)
 49 {
 50     if (f[t].change!=-1)
 51     {
 52         f[2*t].change=f[t].change;
 53         f[2*t+1].change=f[t].change;
 54         f[t].change=-1;
 55         f[2*t].L1=f[2*t].R1=f[2*t].sum1=(f[2*t].r-f[2*t].l+1)*f[2*t].change;
 56         f[2*t+1].L1=f[2*t+1].R1=f[2*t+1].sum1=(f[2*t+1].r-f[2*t+1].l+1)*f[2*t+1].change;
 57     }
 58 }
 59 void build(int t,int l,int r)
 60 {
 61     f[t].l=l;
 62     f[t].r=r;
 63     f[t].change=-1;
 64     if (l==r)
 65     {
 66         f[t].L1=f[t].R1=f[t].sum1=1;
 67         return ;
 68     }
 69     int mid=(f[t].l+f[t].r)/2;
 70     build(2*t,l,mid);
 71     build(2*t+1,mid+1,r);
 72     pushUp(t);
 73 }
 74 void update(int t,int l,int r,int c)
 75 {
 76     if (f[t].l==l && f[t].r==r)
 77     {
 78         f[t].change=c;
 79         f[t].L1=f[t].R1=f[t].sum1=f[t].change*(f[t].r-f[t].l+1);
 80         return ;
 81     }
 82     pushDown(t);
 83     int mid=(f[t].l+f[t].r)/2;
 84     if (r<=mid) update(2*t,l,r,c);
 85     else
 86     {
 87         if (l>mid) update(2*t+1,l,r,c);
 88         else
 89         {
 90             update(2*t,l,mid,c);
 91             update(2*t+1,mid+1,r,c);
 92         }
 93     }
 94     pushUp(t);
 95 }
 96 int query(int t,int k)
 97 {
 98     //printf("f[%d].sum1=%d\n",t,f[t].sum1);
 99     if (f[t].l==f[t].r)
100     {
101         if (f[t].sum1<k) return -1;
102         else return f[t].l;
103     }
104     pushDown(t);
105     if (f[t].sum1<k) return -1;
106     if (f[2*t].sum1>=k) return query(2*t,k);
107     if (f[2*t].R1+f[2*t+1].L1>=k) return f[2*t].r-f[2*t].R1+1;
108     if (f[2*t+1].sum1>=k) return query(2*t+1,k);
109     return -1;
110 }
111 int n,m;
112 int op,x,y;
113 void slove()
114 {
115     build(1,1,n);
116     for (int i=1;i<=m;i++)
117     {
118         scanf("%d",&op);
119         if (op==1)
120         {
121             scanf("%d",&x);
122             int t=query(1,x);
123             //printf("query=%d\n",t);
124             if (t==-1)
125             printf("0\n");
126             else
127             {
128                 printf("%d\n",t);
129                 update(1,t,t+x-1,0);
130             }
131         }
132         else
133         {
134             scanf("%d%d",&x,&y);
135             update(1,x,x+y-1,1);
136         }
137     }
138 }
139 int main()
140 {
141     while (scanf("%d%d",&n,&m)!=EOF)
142     {
143         slove();
144     }
145     return 0;
146 }

时间: 2024-10-13 16:16:22

poj3667 线段树 区间合并的相关文章

POJ-3667 线段树区间合并入门题

题意:长度为n的区间,m个操作,一开始都是0 1 x表示求出长度为x的0的连续区间的最左端,并把这个区间变成1 2 x y表示将区间[x,y]变成0 线段树的区间合并第一题: 每次维护左端连续区间长度ls.右端连续区间长度rs,最大连续长度ms 区间合并的注意点主要在push up操作: 每次更新了一段区间之后向上更新,首先,父区间的ls继承左子树的ls,父区间的rs继承右子树的rs 然后就是重点:左右区间合并之后中间部分可能是连续的!!! 所以:如果整个左.右子区间都是“满的”,父区间的ls和

POJ3667——线段树区间合并(未搞透)——Hotel

The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and enjoy a vacation on the sunny shores of Lake Superior. Bessie, ever the competent travel agent, has named the Bullmoose Hotel on famed Cumberland Street as their v

线段树 区间合并

poj3667 Hotel 区间合并入门题,照着代码打的, 题意:1 a:询问是不是有连续长度为a的空房间,有的话住进最左边       2 a b:将[a,a+b-1]的房间清空思路:记录区间中最长的空房间,开三个数组,msum[rt]表示节点rt内连续的1的个数的最大值,lsum[rt]表示从节点rt左端点开始连续1的个数,rsum[rt]表示从节点rt右端点开始连续1的个数..线段树操作:update:区间替换 query:询问满足条件的最左端点 1 #include<iostream>

hdu4553约会安排(线段树区间合并)

链接 poj3667的加强版 当时的题解 这里只不过对于女神需要另开算,DS的占用的时间不加在女神身上,女神的时间都要加,清空的时候也都要算. 1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<stdlib.h> 6 #include<vector> 7 #include<cmath>

HDU 3911 Black And White(线段树区间合并)

Problem Description There are a bunch of stones on the beach; Stone color is white or black. Little Sheep has a magic brush, she can change the color of a continuous stone, black to white, white to black. Little Sheep like black very much, so she wan

HDU 3308 LCIS (线段树区间合并)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3308 题目很好懂,就是单点更新,然后求区间的最长上升子序列. 线段树区间合并问题,注意合并的条件是a[mid + 1] > a[mid],写的细心点就好了. 1 #include <iostream> 2 #include <cstring> 3 #include <cstdio> 4 using namespace std; 5 const int MAXN = 1

HDU 5316 Magician(线段树区间合并入门)

本文纯属原创,转载请注明出处谢谢.http://blog.csdn.net/zip_fan. 题目传送门:http://acm.hdu.edu.cn/showproblem.php?pid=5316 Time Limit: 18000/9000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Problem Description Fantasy magicians usually gain their ability

hdu3911 线段树 区间合并

1 //Accepted 3911 750MS 9872K 2 //线段树 区间合并 3 #include <cstdio> 4 #include <cstring> 5 #include <iostream> 6 #include <queue> 7 #include <cmath> 8 #include <algorithm> 9 using namespace std; 10 /** 11 * This is a documen

【BZOJ3638】Cf172 k-Maximum Subsequence Sum 线段树区间合并(模拟费用流)

[BZOJ3638]Cf172 k-Maximum Subsequence Sum Description 给一列数,要求支持操作: 1.修改某个数的值 2.读入l,r,k,询问在[l,r]内选不相交的不超过k个子段,最大的和是多少.1 ≤ n ≤ 105,1 ≤ m ≤ 105,1 ≤ l ≤ r ≤ n, 1 ≤ k ≤ 20 Sample Input 9 9 -8 9 -1 -1 -1 9 -8 9 3 1 1 9 1 1 1 9 2 1 4 6 3 Sample Output 17 25