hdu4614 二分法+段树
意甲冠军:给你1-n花瓶 。起初,所有的空,今天,有两种操作模式,
1:从花瓶a開始插入b朵花 假设不能插进去 输出字符串 否则输出最多插入的起点和终点;
2:把a-b的花瓶清空 输出处理花的个数;
结构体数组num【i】表示节点i空瓶的数目
线段树 開始deal函数对整个树初始化,update()更新函数 find()查询区间有多少个空瓶; 对于操作1 关键点是找到起点和终点 这里用二分 在【a,n】进行二分,
先二分起点 注意左右区间的变换(wa了好多次==) 然后在起点和n之间二分终点 最后更新 输出 对于操作2 直接查询就可以;
#include<stdio.h>
#include<string.h>
#include<iostream>
using namespace std; #define LL(x) (x<<1)
#define RR(x) ((x<<1)|1)
struct node
{
int cont;
}num[50000*4];
int deal(int L,int R,int point)
{
num[point].cont=R-L+1;
if(L==R) return 0;
int mid=(L+R)/2;
deal(L,mid,LL(point));
deal(mid+1,R,RR(point));
return 0;
}
int update(int L,int R,int left,int right,int point,int k)
{
if(L==left&&R==right)
{
if(k==1) num[point].cont=R-L+1;
else num[point].cont=0;
return 0;
}
int mid=(L+R)/2;
if(num[point].cont==R-L+1)
{
num[LL(point)].cont=mid-L+1;
num[RR(point)].cont=R-mid;
}
if(num[point].cont==0)
{
num[LL(point)].cont=0;
num[RR(point)].cont=0;
}
if(right<=mid)
{
update(L,mid,left,right,LL(point),k);
}
else if(left>mid)
{
update(mid+1,R,left,right,RR(point),k);
}
else
{
update(L,mid,left,mid,LL(point),k);
update(mid+1,R,mid+1,right,RR(point),k);
}
num[point].cont=num[LL(point)].cont+num[RR(point)].cont;
return 0;
}
int find(int L,int R,int left,int right,int point)
{
if(L==left&&R==right)
return num[point].cont;
int sum=0;
int mid=(L+R)/2;
if(num[point].cont==R-L+1) return right-left+1;
if(num[point].cont==0) return 0;
if(right<=mid) sum+=find(L,mid,left,right,LL(point));
else if(left>mid) sum+=find(mid+1,R,left,right,RR(point));
else
{
sum+=find(L,mid,left,mid,LL(point));
sum+=find(mid+1,R,mid+1,right,RR(point));
}
return sum;
}
int main()
{
int n,m,k,i,j,T,a,b;
scanf("%d",&T);
while(T--)
{
scanf("%d%d",&n,&m);
deal(1,n,1);
for(i=1;i<=m;i++)
{
scanf("%d%d%d",&k,&a,&b);
if(k==1)
{
a+=1;
int cont=find(1,n,a,n,1);
if(cont==0) printf("Can not put any one.\n");
else
{
int left,right,mid;
int star,end;
left=a;
right=n;
while(left<=right)
{
mid=(left+right)/2;
if(find(1,n,left,mid,1)>0)
{
right=mid-1;
star=mid;
}
else left=mid+1; }
if(cont<=b)
{
left=a;
right=n;
while(left<=right)
{
mid=(left+right)/2;
if(find(1,n,mid,right,1)>0)
{
left=mid+1;
end=mid;
}
else right=mid-1;
}
//end=right;
}
else
{
left=a;
right=n;
while(left<=right)
{
mid=(left+right)/2;
if(find(1,n,star,mid,1)>=b)
{
right=mid-1;
end=mid;
}
else left=mid+1;
}
//end=left;
}
printf("%d %d\n",star-1,end-1);
update(1,n,star,end,1,-1);
}
}
else
{
printf("%d\n",b-a+1-find(1,n,a+1,b+1,1));
update(1,n,a+1,b+1,1,1);
} }
printf("\n");
}
return 0;
}
hdu4614 二分法+段树的更多相关文章
- BZOJ-3212 Pku3468 A Simple Problem with Integers 裸线段树区间维护查询
3212: Pku3468 A Simple Problem with Integers Time Limit: 1 Sec Memory Limit: 128 MB Submit: 1278 Sol ...
- ZOJ 1610 间隔染色段树
要长8000仪表板.间染色的范围,问:最后,能看到的颜色,而且颜色一共有段出现 覆盖段 数据对比水 水可太暴力 段树: #include "stdio.h" #include ...
- HDU 1394 Minimum Inversion Number (数据结构-段树)
Minimum Inversion Number Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java ...
- PKU A Simple Problem with Integers (段树更新间隔总和)
意甲冠军:一个典型的段树C,Q问题,有n的数量a[i] (1~n),C, a, b,c在[a,b]加c Q a b 求[a,b]的和. #include<cstdio> #include& ...
- BZOJ 2588 Count on a tree (COT) 是持久的段树
标题效果:两棵树之间的首次查询k大点的权利. 思维:树木覆盖树,事实上,它是正常的树木覆盖了持久段树. 由于使用权值段树可以寻求区间k大,然后应用到持久段树思想,间隔可以做减法.详见代码. CODE: ...
- lintcode-439-线段树的构造 II
439-线段树的构造 II 线段树是一棵二叉树,他的每个节点包含了两个额外的属性start和end用于表示该节点所代表的区间.start和end都是整数,并按照如下的方式赋值: 根节点的 start ...
- lintocde-247-线段树的查询 II
247-线段树的查询 II 对于一个数组,我们可以对其建立一棵 线段树, 每个结点存储一个额外的值 count 来代表这个结点所指代的数组区间内的元素个数. (数组中并不一定每个位置上都有元素) 实现 ...
- lintcode-203-线段树的修改
203-线段树的修改 对于一棵 最大线段树, 每个节点包含一个额外的 max 属性,用于存储该节点所代表区间的最大值. 设计一个 modify 的方法,接受三个参数 root. index 和 val ...
- lintcode-202-线段树的查询
202-线段树的查询 对于一个有n个数的整数数组,在对应的线段树中, 根节点所代表的区间为0-n-1, 每个节点有一个额外的属性max,值为该节点所代表的数组区间start到end内的最大值. 为Se ...
随机推荐
- angular自定义指令相关知识及代码
原文地址 https://www.jianshu.com/p/0c015862156d 大纲 1.自定义指令之——属性指令 2.自定义属性指令的运行原理 3.自定义属性指令代码实践 4.自定义结构指令 ...
- 【topcoder SRM 702 DIV 2 250】TestTaking
Problem Statement Recently, Alice had to take a test. The test consisted of a sequence of true/false ...
- mycat server.xml 配置文件详解
<?xml version="1.0" encoding="UTF-8"?> <!-- - - Licensed under the Apac ...
- windows 空闲超时 非管理员如何破解
windows 空闲超时 非管理员如何破解
- 从程序员的角度分析微信小程序(编程语言:用到什么学什么)
从程序员的角度分析微信小程序(编程语言:用到什么学什么) 一.总结 一句话总结:微信小程序原理就是用JS调用底层native组件,和React Native非常类似.(需要时,用到时再学) 1.选择语 ...
- MySQL 监控-innotop
innotop 编写者Balon Schwartz,<高性能MySQL>的作者之一. innotop的作用为实时地展示服务器正在发生的事情,监控innodb,监控多个MySQL实例,是一款 ...
- [Angular] Subscribing to the valueChanges Observable
For example we have built a form: form = this.fb.group({ store: this.fb.group({ branch: '', code: '' ...
- [Angular] ChangeDetection -- onPush
To understand how change detection can help us improve the proference, we need to understand when it ...
- C++/Php/Python/Shell 程序按行读取文件或者控制台方法总结。
C++/Php/Python/Shell 程序按行读取文件或者控制台方法总结. 一.总结 C++/Php/Python/Shell 程序按行读取文件或者控制台(php读取标准输入:$fp = fope ...
- phpStudy的localhost不能访问怎么解决(相关性)
phpStudy的localhost不能访问怎么解决(相关性) 一.总结 1.注释掉httpd.conf文件中的#ServerName localhost:80 这句话. 2.既然是localho ...