hdu4553约会安排 线段树
//DS QT 找一段最靠前的长度为QT的空间
//NS QT 找一段最靠前的长度为QT的空间。假设没找到能够将DS占领的空间当做空暇空间,找一段最靠前的空间
//STUDY!! L R 清空L ,R的空间
//用两个线段树,一个处理DS的情况。一个处理NS的情况
//线段树维护,ma_l , ma_r , ma 区间[l,r]的左边的空暇区间,右边的以及最大的空暇区间
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std ;
const int maxn = 1e5 + 10;
#define left v<<1
#define right v<<1|1
struct node
{
int l , r ;
int ma_l ;
int ma_r ;
int ma ;
int lazy ;
}tree[2][maxn<<2] ;
void build(int l , int r , int v)
{
for(int i = 0;i < 2;i++)
{
tree[i][v].l = l ;
tree[i][v].r = r;
tree[i][v].lazy = -1;
tree[i][v].ma_l = tree[i][v].ma = tree[i][v].ma_r = (r - l + 1) ;
}
if(l == r)return ;
int mid = (l + r)>>1 ;
build(l , mid , left) ;
build(mid+1 , r , right) ;
}
void push_down(int v)
{
for(int i = 0 ;i < 2;i++)
if(tree[i][v].lazy != -1)
{
tree[i][left].ma_l = tree[i][left].ma_r = tree[i][left].ma = (tree[i][left].r - tree[i][left].l + 1)*tree[i][v].lazy ;
tree[i][right].ma_l = tree[i][right].ma_r = tree[i][right].ma = (tree[i][right].r - tree[i][right].l + 1)*tree[i][v].lazy ;
tree[i][left].lazy = tree[i][right].lazy = tree[i][v].lazy ;
tree[i][v].lazy = -1;
}
}
void push_up(int v)
{
for(int i = 0 ;i < 2;i++)
{
tree[i][v].ma_l = tree[i][left].ma_l ;
tree[i][v].ma_r = tree[i][right].ma_r ;
tree[i][v].ma = max(max(tree[i][left].ma ,tree[i][right].ma) ,tree[i][left].ma_r+tree[i][right].ma_l) ;
if(tree[i][v].ma_l == (tree[i][left].r - tree[i][left].l + 1))
tree[i][v].ma_l += tree[i][right].ma_l ;
if(tree[i][v].ma_r == (tree[i][right].r - tree[i][right].l + 1))
tree[i][v].ma_r += tree[i][left].ma_r ;
}
}
int query(int v , const int flag , const int num)
{
if(tree[flag][v].l == tree[flag][v].r)
return tree[flag][v].l ;
push_down(v) ;
if(tree[flag][left].ma >= num)
return query(left , flag ,num) ;
else if(tree[flag][left].ma_r + tree[flag][right].ma_l >= num)
return tree[flag][left].r - tree[flag][left].ma_r + 1 ;
else return query(right , flag , num) ;
}
void update(int a , int b , int v , const int flag , const int tag)
{
if(tree[flag][v].l >= a && tree[flag][v].r <= b)
{
tree[flag][v].lazy = tag;
tree[flag][v].ma_l = tree[flag][v].ma = tree[flag][v].ma_r = (tree[flag][v].r - tree[flag][v].l + 1)*tag ;
return ;
}
push_down(v) ;
int mid = (tree[flag][v].l + tree[flag][v].r) >> 1 ;
if(a <= mid)update(a , b , left , flag , tag) ;
if(b > mid)update(a , b , right , flag , tag) ;
push_up(v) ;
}
int main()
{
// freopen("in.txt" ,"r" , stdin) ;
int T ;
scanf("%d" , &T) ;
int cas = 0 ;
while(T--)
{
int N , Q ;
scanf("%d%d" ,&N , &Q) ;
build(1 , N , 1) ;
char ch[10] ;
int L , R , qt ;
printf("Case %d:\n" , ++cas) ;
while(Q--)
{
scanf("%s" , ch) ;
if(ch[0] == 'D')
{
scanf("%d" , &qt) ;
if(tree[1][1].ma < qt)
{
puts("fly with yourself");
continue ;
}
int pos = query(1 , 1 , qt) ;
update(pos , pos + qt - 1 , 1 , 1 , 0) ;
printf("%d,let's fly\n" , pos) ;
}
else if(ch[0] == 'N')
{
scanf("%d" , &qt) ;
int pos ;
if(tree[1][1].ma < qt && tree[0][1].ma < qt)
{puts("wait for me"); continue ;}
else if(tree[1][1].ma >= qt)
pos = query(1 , 1 , qt) ;
else pos = query(1 , 0 , qt) ;
printf("%d,don't put my gezi\n" , pos) ;
update(pos , pos + qt - 1 , 1 , 0 ,0) ;
update(pos , pos + qt - 1 , 1 , 1 , 0) ;
}
else if(ch[0] == 'S')
{
scanf("%d%d" , &L , &R) ;
update(L , R , 1 , 0 , 1) ;
update(L , R , 1 , 1 , 1) ;
puts("I am the hope of chinese chengxuyuan!!") ;
}
}
}
return 0 ;
}
hdu4553约会安排 线段树的更多相关文章
- hdu4553 约会安排 线段树
寒假来了,又到了小明和女神们约会的季节. 小明虽为屌丝级码农,但非常活跃,女神们常常在小明网上的大段发言后热情回复“呵呵”,所以,小明的最爱就是和女神们约会.与此同时,也有很多基友找他开黑,由于数量实 ...
- hdu4553约会安排(线段树区间合并)
链接 poj3667的加强版 当时的题解 这里只不过对于女神需要另开算,DS的占用的时间不加在女神身上,女神的时间都要加,清空的时候也都要算. #include <iostream> #i ...
- hdu 4453 约会安排(线段树区间合并)
约会安排 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)Total Submis ...
- HDU-4553 约会安排(线段树维护连续区间)
http://acm.hdu.edu.cn/showproblem.php?pid=4553 Problem Description 寒假来了,又到了小明和女神们约会的季节. 小明虽为屌丝级码农,但 ...
- HDU4553 约会安排
http://www.mamicode.com/info-detail-422707.html 线段树区间覆盖,开两个线段树,一个记录DS,一个NS // #pragma comment(linker ...
- 约会安排---hdu4553(线段树,麻烦的区间覆盖)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4553 算是poj3667的加强版,建立两颗线段树,一个是DS区间,另一个是NS区间.那么根据题意, ...
- HDU 4553 约会安排 (区间合并)【线段树】
<题目链接> 寒假来了,又到了小明和女神们约会的季节. 小明虽为屌丝级码农,但非常活跃,女神们常常在小明网上的大段发言后热情回复“呵呵”,所以,小明的最爱就是和女神们约会.与此同时,也有 ...
- [Vani有约会]雨天的尾巴 线段树合并
[Vani有约会]雨天的尾巴 LG传送门 线段树合并入门好题. 先别急着上线段树合并,考虑一下这题的暴力.一看就是树上差分,对于每一个节点统计每种救济粮的数量,再一遍dfs把差分的结果统计成答案.如果 ...
- P4556 [Vani有约会]雨天的尾巴(线段树合并+lca)
P4556 [Vani有约会]雨天的尾巴 每个操作拆成4个进行树上差分,动态开点线段树维护每个点的操作. 离线处理完向上合并就好了 luogu倍增lca被卡了5分.....于是用rmq维护.... 常 ...
随机推荐
- LNMP架构部署
第1章 部署LNMP架构步骤 1.1 ①部署Linux系统(OK) 基本优化完成(ip地址设置 yum源更新 字符集设置) 安全优化完成(iptables关闭 selinux关闭 /tmp/ 1777 ...
- Vue.js优雅的实现列表清单
一.Vue.js简要说明 Vue.js (读音 /vjuː/) 是一套构建用户界面的渐进式框架.与前端框架Angular一样, Vue.js在设计上采用MVVM模式,当View视图层发生变化时 ...
- C#用panel实现子窗体的切换
今天编程的时候,遇到一个问题:在同一个窗体区域加载两个不同的窗体,每次只显示一个子窗体并能够对这两个子窗体做切换. 对于这个问题用panel控件是非常简单的,只要每次清空panel控件上的子窗体,然后 ...
- c# RSA加密和解密
"); Console.WriteLine(encodeString); string decode = MyRSA.Decrypt(encode ...
- percona_xtrabackup
原理 percona xtrabackup备份过程主要分为以下几点: 1.xtrabackup在启动时会记住LSN(log sequence number),然后复制所有的数据文件 2.xtrabac ...
- vimgdb安装
vimgdb install ************** a) You need: vim-7.3.tar.bz2 http://www.vim.org/sources.php vimgdb- (t ...
- 使用 Rust 构建分布式 Key-Value Store
欢迎大家前往腾讯云社区,获取更多腾讯海量技术实践干货哦~ 引子 构建一个分布式 Key-Value Store 并不是一件容易的事情,我们需要考虑很多的问题,首先就是我们的系统到底需要提供什么样的功能 ...
- 使用face_recognition批量识别图片中的人数
#使用face_recognition实现从图片中选中人数并分别输出txtimport face_recognition import cv2 import os fin = 'D:\\Users\\ ...
- Kaggle Challenge简要介绍
https://en.wikipedia.org/wiki/Kaggle 以下内容,直接摘自维基百科,主要起到一个记录的作用,提醒自己有时间关注关注这个竞赛. Kaggle is a platform ...
- 如何编写单元测试-基于Spring
单元测试 首先单元测试真的算是一种"脏活累活",但是我个人感觉还是有必要,至少本人最近开始写单元测试后还是能发现一些"bug"的. 如何写单元测试 单元测试的要 ...