HDU1199 动态线段树 // 离散化
附动态线段树AC代码
http://acm.hdu.edu.cn/showproblem.php?pid=1199
因为昨天做了一道动态线段树的缘故,今天遇到了这题没有限制范围的题就自然而然想到了动态线段树的解法,写完看题解发现原来只要离散化就好了(干。。),总结了一下这题和昨天hdu5367的区别在于,虽然都是两题范围超级大的线段树,但是昨天的强制要求在线求解,只能选择空间复杂度更大一些的动态线段树来求解,而今天的这题可以选择离线操作,因而可以采用先读入所有输入,离散化之后建树的方法来操作。下次遇到这样的题还是应当优先考虑离散化。
在一个全部涂黑色的条子上涂上一些白色或黑色的片段,问最大白色片段。
仅仅从线段树维护节点的角度上来看很简单,维护最大白色片段,左边最大白色片段,右边最大白色片段就好了。
由于条子的长度长达1-INT_MAX;
采用离散化,或者像我一样失了智去用动态线段树的方法,也能AC
- #include <map>
- #include <set>
- #include <cmath>
- #include <queue>
- #include <stack>
- #include <vector>
- #include <string>
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
- #include <sstream>
- #include <iostream>
- #include <algorithm>
- #include <functional>
- #define For(i, x, y) for(int i=x; i<=y; i++)
- #define _For(i, x, y) for(int i=x; i>=y; i--)
- #define Mem(f, x) memset(f, x, sizeof(f))
- #define Sca(x) scanf("%d", &x)
- #define Scl(x) scanf("%lld",&x);
- #define Pri(x) printf("%d\n", x)
- #define Prl(x) printf("%lld\n",x);
- #define CLR(u) for(int i = 0; i <= N ; i ++) u[i].clear();
- #define LL long long
- #define ULL unsigned long long
- #define mp make_pair
- #define PII pair<int,int>
- #define PIL pair<int,long long>
- #define PLL pair<long long,long long>
- #define pb push_back
- #define fi first
- #define se second
- using namespace std;
- typedef vector<int> VI;
- const double eps = 1e-;
- const int maxn = ;
- const int INF = 0x3f3f3f3f;
- const int mod = 1e9 + ;
- inline int read()
- {
- int now=;register char c=getchar();
- for(;!isdigit(c);c=getchar());
- for(;isdigit(c);now=now*+c-'',c=getchar());
- return now;
- }
- int N,M;
- struct Tree{
- LL sum; //最大连续
- LL lsum; //左连续
- LL rsum; //右连续
- int lt;
- int rt;
- int lazy;
- void init(){
- lsum = rsum = sum = lt = rt = ;
- lazy = -;
- }
- }tree[maxn * ];
- int tot;
- void check(int &t){
- if(t) return;
- t = ++tot;
- tree[t].init();
- }
- void add(int &t,LL L,LL R,int v){
- if(v){
- tree[t].sum = tree[t].lsum = tree[t].rsum = R - L + ;
- }else{
- tree[t].sum = tree[t].lsum = tree[t].rsum = ;
- }
- tree[t].lazy = v;
- }
- void Pushdown(int& t,LL L,LL R){
- if(tree[t].lazy == -) return;
- int < = tree[t].lt; int &rt = tree[t].rt;
- LL M = (L + R) >> ;
- check(lt); check(rt);
- add(lt,L,M,tree[t].lazy);
- add(rt,M + ,R,tree[t].lazy);
- tree[t].lazy = -;
- }
- void Pushup(int t,LL L,LL R){
- int &ls = tree[t].lt; int &rs = tree[t].rt;
- LL M = (L + R) >> ;
- check(ls); check(rs);
- tree[t].sum = max(tree[ls].sum,tree[rs].sum);
- tree[t].sum = max(tree[t].sum,tree[ls].rsum + tree[rs].lsum);
- tree[t].lsum = tree[ls].lsum;
- if(tree[ls].lsum == M - L + ){
- tree[t].lsum = tree[ls].lsum + tree[rs].lsum;
- }
- tree[t].rsum = tree[rs].rsum;
- if(tree[rs].rsum == R - M){
- tree[t].rsum = tree[rs].rsum + tree[ls].rsum;
- }
- }
- void update(int &t,int q1,int q2,LL L,LL R,int v){
- check(t);
- if(q1 <= L && R <= q2){
- add(t,L,R,v);
- return;
- }
- Pushdown(t,L,R);
- LL m = (L + R) >> ;
- if(q1 <= m) update(tree[t].lt,q1,q2,L,m,v);
- if(q2 > m) update(tree[t].rt,q1,q2,m + ,R,v);
- Pushup(t,L,R);
- }
- LL Left,Right;
- void query(int t,LL L,LL R){
- if(L == R){
- Left = L;
- Right = R;
- return;
- }
- check(tree[t].lt); check(tree[t].rt);
- int ls = tree[t].lt; int rs = tree[t].rt;
- LL M = (L + R) >> ;
- if(tree[ls].sum == tree[t].sum) query(ls,L,M);
- else if(tree[rs].sum == tree[t].sum) query(rs,M + ,R);
- else{
- Left = M - tree[ls].rsum + ;
- Right = M + tree[rs].lsum;
- return;
- }
- }
- int main()
- {
- while(~Sca(N)){
- LL L = ; LL R = ;
- tot = ;
- int root = ;
- update(root,L,R,L,R,);
- For(i,,N){
- LL l,r;
- char op[];
- scanf("%lld%lld%s",&l,&r,&op);
- if(op[] == 'w'){
- update(root,l,r,L,R,);
- }else{
- update(root,l,r,L,R,);
- }
- }
- if(!tree[root].sum){
- puts("Oh, my god");
- continue;
- }
- query(root,L,R);
- printf("%lld %lld\n",Left,Right);
- }
- return ;
- }
HDU1199 动态线段树 // 离散化的更多相关文章
- POJ 2528 Mayor's posters(线段树+离散化)
Mayor's posters 转载自:http://blog.csdn.net/winddreams/article/details/38443761 [题目链接]Mayor's posters [ ...
- poj 2528 Mayor's posters(线段树+离散化)
/* poj 2528 Mayor's posters 线段树 + 离散化 离散化的理解: 给你一系列的正整数, 例如 1, 4 , 100, 1000000000, 如果利用线段树求解的话,很明显 ...
- [poj2528] Mayor's posters (线段树+离散化)
线段树 + 离散化 Description The citizens of Bytetown, AB, could not stand that the candidates in the mayor ...
- [UESTC1059]秋实大哥与小朋友(线段树, 离散化)
题目链接:http://acm.uestc.edu.cn/#/problem/show/1059 普通线段树+离散化,关键是……离散化后建树和查询都要按照基本法!!!RE了不知道多少次………………我真 ...
- poj 2528 Mayor's posters 线段树+离散化技巧
poj 2528 Mayor's posters 题目链接: http://poj.org/problem?id=2528 思路: 线段树+离散化技巧(这里的离散化需要注意一下啊,题目数据弱看不出来) ...
- BZOJ_4653_[Noi2016]区间_线段树+离散化+双指针
BZOJ_4653_[Noi2016]区间_线段树+离散化+双指针 Description 在数轴上有 n个闭区间 [l1,r1],[l2,r2],...,[ln,rn].现在要从中选出 m 个区间, ...
- D - Mayor's posters(线段树+离散化)
题目: The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campai ...
- 主席树||可持久化线段树+离散化 || 莫队+分块 ||BZOJ 3585: mex || Luogu P4137 Rmq Problem / mex
题面:Rmq Problem / mex 题解: 先离散化,然后插一堆空白,大体就是如果(对于以a.data<b.data排序后的A)A[i-1].data+1!=A[i].data,则插一个空 ...
- HDU5367 思维map // 动态线段树
地主毛毛有n座山,这些山在地主家门前排成一条直线.这些山一开始均有相同的高度. 每一天,毛毛都会要求花花开挖机把几座山挖掉一定高度,或者给一些山堆上一些高度.并且要求花花报告现在有多少座山属于“高山 ...
随机推荐
- Scrum Meeting day 3
第三次会议 No_00:工作情况 No_01:任务说明 待完成 已完成 No_10:燃尽图 No_11:照片记录 No_100:代码/文档签入记录
- SQL中常用函数
SELECT CONVERT(varchar(100), GETDATE(), 23) AS 日期 结果:2017-01-05 select ISNULL(price,'0.0') ...
- Repair U Disk logo unvisiable in task bar on windows XP
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersio ...
- Jmeter 通过json Extracted 来获取 指定的值的id
在没有 精确或模糊查询的接口时可以使用jmeter 获取指定的值的ID import java.lang.String ; String getTargetName="iphone632g& ...
- Centos7搭建LAMP+Typecho博客
一.安装Apache的httpd服务 yum install httpd # 安装httpd服务 systemctl start httpd # 启动httpd服务 systemctl status ...
- [转帖] 打开加密SQLite文件的方法
Copy From http://blog.csdn.net/sean4m/article/details/50211565 mark 下 正好工作用到了这个东西. 版本:SQLiteExpertPr ...
- insertBefore(),appendChild()创建添加列表实例
定义: insertBefore() 方法在您指定的已有子节点之前插入新的子节点. 语法: 父级.insertBefore(新的子节点,指定的已有子节点) 实例: <input id=" ...
- 软件工程_2nd weeks
本周上课没有板书,都由老师口头叙述 因此有的笔记记得不是很全,幸好有郑蕊师姐发布的课堂笔记,很好的梳理上课的内容~ 1.根据老师上课给的建议,进行了深刻的思考和反思 1.1 作为一个学硕研究生,这门课 ...
- Python 2和Python 3的编码问题
在Python2中,字符串无法完全地支持国际字符集和Unicode编码.为了解决这种限制,Python2对Unicode数据使用了单独的字符串类型.要输入Unicode字符串字面量,要在第一个引号前加 ...
- 可视化数据matplotlib之安装与简单折线图
matplotlib是一个可视化数据的模块,安装前需要先安装Visual Studio Community:然后去https://pypi.python.org/pypi上查找matplotlib并下 ...