HDU4614【线段树。】
果然看了理解了一下大牛的代码然后自己敲结果果然有不少错误
回复说,线段树做为一种数据结构,最好以一种风格过一题裸的然后作为自己的模板。。
二分写的也很恶心哪
还有题目稍复杂一点的注定得推敲各种公式,不光DP注意边界那样令自己恶心,就是这些公式+1,-1结果都是差之千里,或者自己根本调试不出来。
思路很重要,模板也比较重要,线段树裸敲的话容易出错,比树状数组出错几率大的多。
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cstring>
#include <cmath>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <string>
#include <queue>
#include <set>
#include <map>
#include <vector>
#include <assert.h> using namespace std; #define lowbit(i) (i&-i)
#define sqr(x) ((x)*(x))
#define enter printf("\n")
#define is_sqr(x) (x&(x-1))
#define pi acos(-1.0)
#define clr(x) memset(x,0,sizeof(x))
#define fp1 freopen("in.txt","r",stdin)
#define fp2 freopen("out.txt","w",stdout)
#define pb push_back typedef long long LL; const double eps = 1e-7;
const double DINF = 1e100;
const int INF = 1000000006;
const LL LINF = 1000000000000000005ll;
const int MOD = (int) 1e9 + 7;
const int maxn=300005; template<class T> inline T Min(T a,T b){return a<b?a:b;}
template<class T> inline T Max(T a,T b){return a>b?a:b;}
template<class T> inline T Min(T a,T b,T c){return min(min(a, b),c);}
template<class T> inline T Max(T a,T b,T c){return max(max(a, b),c);} struct Node
{
int l,r,sum,add;
}node[maxn];//这地方也有技巧 线段树要存多大的数据 比如树高为H
void build(int root,int l,int r)
{
node[root].l=l;
node[root].r=r;
node[root].add=-1;
node[root].sum=0;
if(node[root].l==node[root].r) return ;
else
{
int mid=(l+r)/2;
build(root*2,l,mid);
build(root*2+1,mid+1,r);
}
}
int query(int root,int l,int r)
{
if(node[root].l==l&&node[root].r==r) return node[root].sum;//又有错误
if(node[root].add>=0)//更新子结点?
{
int ls=root*2,rs=root*2+1;
//node[root].sum=(node[root].r-node[root].l+1)*node[root].add;
//这一步不需要,前面已修改
node[ls].sum=(node[ls].r-node[ls].l+1)*node[root].add;//两处错误
node[rs].sum=(node[rs].r-node[rs].l+1)*node[root].add;// ls rs用不用更新?
node[ls].add=node[rs].add=node[root].add;
node[root].add=-1;
}
int ans=0;
int mid=(node[root].l+node[root].r)/2;
if(r<=mid)
{
return query(root*2,l,r);
}
else if(l>mid)
{
return query(root*2+1,l,r);
}
else
{
ans=query(root*2,l,mid);
ans+=query(root*2+1,mid+1,r);
}
return ans;
}
void update(int root,int l,int r,int add)
{
if(node[root].l==l&&node[root].r==r)//不够掌握的就是他这块的更新和上面的什么关系
{
node[root].add=add;
node[root].sum=(node[root].r-node[root].l+1)*node[root].add;
return;
}
int mid=(node[root].l+node[root].r)/2;
if(r<=mid)
{
update(root*2,l,r,add);
}
else if(l>mid)
{
update(root*2+1,l,r,add);
}
else
{
update(root*2,l,mid,add);
update(root*2+1,mid+1,r,add);
}
node[root].sum=node[root*2].sum+node[root*2+1].sum;
}
int bin_sea(int l,int r,int a)
{
int ll=l;
while(l<r)
{
int mid=(l+r)/2;
int temp_num=query(1,ll,mid);
if(mid-ll+1-temp_num>=a)//最开始没写出二分查找来 后来又因为mid-l+1错了 //第N处错误 //第N+1处错误
r=mid;
else l=mid+1;
}
return l;
}
int main()
{
int ncase;
scanf("%d",&ncase);
while(ncase--)
{
int n,m,i,j;
scanf("%d%d",&n,&m);
n--;
build(1,0,n);
for(i=1;i<=m;i++)
{
int a,b,c;
scanf("%d%d%d",&a,&b,&c);
if(a==1)
{
int right_num=query(1,b,n);
// printf("~%d\n",right_num);
if(right_num==n-b+1)
printf("Can not put any one.\n");
else
{
int left_num=b==0?0:query(1,0,b-1);//这地方要是b==0的话 left_num直接等于0 (注意点1)//第N+3处错误
//printf("~%d\n",left_num);
int left_pos=bin_sea(0,n,b-left_num+1);//为吗是b-left_num+1?而不是+2
int right_pos=bin_sea(b,n,min(n-b+1-right_num,c));//(注意点2,min)
printf("%d %d\n",left_pos,right_pos);
update(1,left_pos,right_pos,1);
}
}
else if(a==2)
{
printf("%d\n",query(1,b,c));
update(1,b,c,0);
}
}
printf("\n");
}
return 0;
}
HDU4614【线段树。】的更多相关文章
- hdu4614 线段树+二分 插花
Alice is so popular that she can receive many flowers everyday. She has N vases numbered from 0 to N ...
- HDU-4614 Vases and Flowers (线段树区间更新)
题目大意:有n个花瓶,每个花瓶中只能放一朵花.两种操作,一种是从A开始放F朵花,如果有的花瓶中已经有花则跳过这个花瓶,往下一个花瓶放:第二种是将区间[A,B]之间花瓶中的花清空.如果是第一种操作,输出 ...
- HDU4614 Vases and Flowers 二分+线段树
分析:感觉一看就是二分+线段树,没啥好想的,唯一注意,当开始摆花时,注意和最多能放的比大小 #include<iostream> #include<cmath> #includ ...
- HDU-4614 Vases and Flowers 线段树区间更新
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4614 线段树保存区间是否被覆盖以及区间的和即可,在询问的时候在线段树上二分查找就可以了...代码写得比 ...
- hdu4614(线段树+二分)
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=4614 题意:给定一个区间[0,N-1],初始时每个位置上的数字都是0,可以对其进行以下两种操作: 1. ...
- hdu4614 Vases and Flowers 线段树+二分
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4614 题意: 给你N个花瓶,编号是0 到 N - 1 ,初始状态花瓶是空的,每个花瓶最多插一朵花. ...
- hdu4614 Vases and Flowers 线段树
Alice is so popular that she can receive many flowers everyday. She has N vases numbered from 0 to N ...
- hdu4614 Vases and Flowers【线段树】【二分】
Alice is so popular that she can receive many flowers everyday. She has N vases numbered from 0 to N ...
- HDU-4614 Vases and Flowers(线段树区间更新+二分查找)
http://acm.hdu.edu.cn/showproblem.php?pid=4614 Time Limit: 4000/2000 MS (Java/Others) Memory Limi ...
随机推荐
- Centos 6.5 配置nginx服务
官方网站:http://nginx.org最新版本:1.7.11官方文档:http://nginx.org/en/docs/ 一.安装NGINX查看当前centos版本: #cat /etc/redh ...
- jquery——ajax加载后的内容,单击事件失效
使用delegate(),on()绑定事件,可以将事件绑定到其祖先元素上,这样以后加载出来的元素,单击事件仍然有效
- Mac下使用Web服务器性能/压力测试工具webbench、ab、siege
Web开发,少不了的就是压力测试,它是评估一个产品是否合格上线的基本标准,下面我们来一一剖析他们的使用方式. 测试前,前面先把系统的端口限制数改大,看看Mac下面的默认限制 ulimit -a ope ...
- MySQL定时检查是否宕机并邮件通知
我们有时候需要一些检查MySQL是否宕机,如果宕机了应自动重新启动应用并通知运维人员!此脚本用来简单的实现MySQL宕机后自动重启并邮件通知运维,此为SHELL脚本,当然也有一些朋友喜欢用Python ...
- what is the virtual machine, when and why we need use it ?
虚拟机(Virtual Machine)指通过软件模拟的具有完整硬件系统功能的.运行在一个完全隔离环境中的完整计算机系统. 通过虚拟机软件,你可以在一台物理计算机上模拟出二台或多台虚拟的计算机,这些虚 ...
- 在后台对GameObject进行"创建"||"删除"动作
在后台对GameObject进行"创建"||"删除"动作 建立 public GameObject Pre;//在编辑器中用来绑定的Prefabs public ...
- C# window service的创建
其实我也是第一次在博客园写博客,看到那些高手说自己要多动手写博客,于是乎自己也尝试尝试. 废话不多说.这几天在研究window service,通过查找各种大神写的博客,我终于成功的自己写出来了. 下 ...
- MySQL中bin-log使用
操作命令:show binlog events ; reset master 删除所有的二进制日志 flush logs 产生一个新的binlog日志文件 show master logs; 或者 s ...
- 【Google Protocol Buffer】Google Protocol Buffer
http://www.ibm.com/developerworks/cn/linux/l-cn-gpb/ Google Protocol Buffer 的使用和原理 Protocol Buffers ...
- 从JAVA多线程理解到集群分布式和网络设计的浅析
对于JAVA多线程的应用非常广泛,现在的系统没有多线程几乎什么也做不了,很多时候我们在何种场合如何应用多线程成为一种首先需要选择的问题,另外关于java多线程的知识也是非常的多,本文中先介绍和说明一些 ...