HDU 1823 Luck and Love 二维线段树(树套树)
Luck and Love
Time Limit: 10000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 5460 Accepted Submission(s): 1364
而是我在你面前
可你却不知道我爱你
―― 张小娴
前段日子,枫冰叶子给Wiskey做了个征婚启事,聘礼达到500万哦,天哪。但是天文数字了啊。不知多少MM蜂拥而至。顿时万人空巷,连扫地的大妈都来凑热闹来了。
―_―|||
因为人数太多。Wiskey实在忙只是来,就把统计的事情全交给了枫冰叶子,自己跑回家歇息去了。这可够枫冰叶子忙的了,他要处理的有两类事情,一是得接受MM的报名,二是要帮Wiskey查找符合要求的MM中缘分最高值。
接下来是一个操作符C。
当操作符为‘I’时,表示有一个MM报名,后面接着一个整数,H表示身高,两个浮点数。A表示活泼度。L表示缘分值。 (100<=H<=200, 0.0<=A,L<=100.0)
当操作符为‘Q’时,后面接着四个浮点数,H1。H2表示身高区间。A1,A2表示活泼度区间。输出符合身高和活泼度要求的MM中的缘分最高值。
(100<=H1,H2<=200, 0.0<=A1。A2<=100.0)
全部输入的浮点数,均仅仅有一位小数。
对查找不到的询问,输出-1。
8
I 160 50.5 60.0
I 165 30.0 80.5
I 166 10.0 50.0
I 170 80.5 77.5
Q 150 166 10.0 60.0
Q 166 177 10.0 50.0
I 166 40.0 99.9
Q 166 177 10.0 50.0
0
80.5
50.0
99.9
//171MS 5900K
#include<stdio.h>
#include<algorithm>
#define M 1007
#define eps 1e-4
using namespace std;
char s[7];
struct Sub_Tree
{
int left,right,ans;
int mid(){return (left+right)>>1;}
};
struct Tree
{
int left,right;
int mid(){return (left+right)>>1;}
Sub_Tree subtree[4*M];
}tree[M]; void build_subtree(int l,int r,int i,int fa)
{
tree[fa].subtree[i].left=l;
tree[fa].subtree[i].right=r;
tree[fa].subtree[i].ans=-1;
if(l==r)return;
int mid=(l+r)>>1;
build_subtree(l,mid,i<<1,fa);
build_subtree(mid+1,r,i<<1|1,fa);
} void build(int l,int r,int i)
{
tree[i].left=l;tree[i].right=r;
build_subtree(0,1000,1,i);
if(l==r)return;
int mid=(l+r)>>1;
build(l,mid,i<<1);
build(mid+1,r,i<<1|1);
} void up(int i,int fa)
{
tree[fa].subtree[i].ans=max(tree[fa].subtree[i<<1].ans,tree[fa].subtree[i<<1|1].ans);
} void update_subtree(int a,int l,int i,int fa)
{
if(tree[fa].subtree[i].left==tree[fa].subtree[i].right)
{
tree[fa].subtree[i].ans=max(tree[fa].subtree[i].ans,l);
return;
}
int mid=tree[fa].subtree[i].mid();
if(a<=mid)update_subtree(a,l,i<<1,fa);
else update_subtree(a,l,i<<1|1,fa);
up(i,fa);
} void update(int h,int a,int l,int i)
{
update_subtree(a,l,1,i);
if(tree[i].left==tree[i].right)return;
int mid=tree[i].mid();
if(h<=mid)update(h,a,l,i<<1);
else update(h,a,l,i<<1|1);
} int query_subtree(int a1,int a2,int i,int fa)
{
if(tree[fa].subtree[i].left>=a1&&tree[fa].subtree[i].right<=a2)return tree[fa].subtree[i].ans;
int mid=tree[fa].subtree[i].mid();
int maxx=-1;
if(a1<=mid)maxx=max(maxx,query_subtree(a1,a2,i<<1,fa));
if(mid<a2)maxx=max(maxx,query_subtree(a1,a2,i<<1|1,fa));
return maxx;
} int query(int h1,int h2,int a1,int a2,int i)
{
if(tree[i].left>=h1&&tree[i].right<=h2)return query_subtree(a1,a2,1,i);
int mid=tree[i].mid();
int maxx=-1;
if(h1<=mid)maxx=max(maxx,query(h1,h2,a1,a2,i<<1));
if(mid<h2)maxx=max(maxx,query(h1,h2,a1,a2,i<<1|1));
return maxx;
} int main()
{
int t;
while(scanf("%d",&t),t)
{
build(100,200,1);
int h,h1,h2;
double a,a1,a2,l;
while(t--)
{
scanf("%s",s);
if(s[0]=='I')
{
scanf("%d%lf%lf",&h,&a,&l);
update(h,int(a*10),int(l*10),1);
}
else
{
scanf("%d%d%lf%lf",&h1,&h2,&a1,&a2);
if(h1>h2)swap(h1,h2);
if(a1>a2)swap(a1,a2);
int maxx=query(h1,h2,int(a1*10),int(a2*10),1);
if(maxx<0)printf("-1\n");
else printf("%.1f\n",maxx/10.0);
}
}
}
return 0;
}
HDU 1823 Luck and Love 二维线段树(树套树)的更多相关文章
- hdu 1823 Luck and Love 二维线段树
题目链接 很裸的题, 唯一需要注意的就是询问时给出的区间并不是l<r, 需要判断然后交换一下, WA了好多发... #include<bits/stdc++.h> using nam ...
- HDU1823 Luck ans Love 二维线段树
Luck and Love HDU - 1823 世界上上最远的距离不是相隔天涯海角 而是我在你面前 可你却不知道我爱你 ―― 张小娴 前段日子,枫冰叶子给Wiskey ...
- [hdu1823]Luck and Love(二维线段树)
解题关键:二维线段树模板题(单点修改.查询max) #include<cstdio> #include<cstring> #include<algorithm> # ...
- hdu 5465 Clarke and puzzle 二维线段树
Clarke and puzzle Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php? ...
- HDU 1823 Luck and Love(二维线段树)
之前只知道这个东西的大概概念,没具体去写,最近呵呵,今补上. 二维线段树 -- 点更段查 #include <cstdio> #include <cstring> #inclu ...
- hdu - 1823 - Luck and Love(线段树)
版权声明:本文为博主原创文章.未经博主同意不得转载. https://blog.csdn.net/SCNU_Jiechao/article/details/24406391 题意:Wiskey招女友, ...
- HDU 4819 Mosaic(13年长春现场 二维线段树)
HDU 4819 Mosaic 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4819 题意:给定一个n*n的矩阵,每次给定一个子矩阵区域(x,y,l) ...
- Luck and Love(二维线段树)
Luck and Love Time Limit: 10000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Tota ...
- hdu 4819 二维线段树模板
/* HDU 4819 Mosaic 题意:查询某个矩形内的最大最小值, 修改矩形内某点的值为该矩形(Mi+MA)/2; 二维线段树模板: 区间最值,单点更新. */ #include<bits ...
随机推荐
- Tasker文件夹说明
################导入类#################路径 类型 后缀名 /tasker/profiles/ 配置 .prf.xml /tasker/projects/ 项目 .pr ...
- 详解Java中的clone方法 -- 原型模式 及源码
http://www.cnblogs.com/cq-home/p/6431426.html http://blog.csdn.net/zhangjg_blog/article/details/1836 ...
- 负载均衡---在window与linux下配置nginx
最近有些时间,开始接触负载均衡方面的东西,从硬件F5再到Citrix Netscalar.不过因为硬件的配置虽然不复杂,但昂贵的价格也让一般用户望而却步(十几万到几十万),所以只能转向nginx,sq ...
- 网络游戏MMORPG服务器架构
转载于:http://justdo2008.iteye.com/blog/1936795 1.网络游戏MMORPG整体服务器框架,包括早期,中期,当前的一些主流架构 .关键词 网络协议 网络IO 消息 ...
- jenkins的docker
参考:https://store.docker.com/images/jenkins?tab=description https://my.oschina.net/jayqqaa12/blog/633 ...
- 关于JDBC PreparedStatement
PreparedStatement的执行步骤: 1. 向数据库服务器发送SQL语句,数据库对SQL进行解析和优化(conn.preparedStatement(sql)) 2. 向数据库发送绑定的参数 ...
- Android -- Spinner && AutoCompleteTextView
Spinner 下拉选择框 Android给我们提供了一个Spi ...
- TextView子类的常用属性
TextView常见的子类包括EditText,Button,CheckBox, RadioButton等. 1.EditText EditText继承自TextView,因此TextView所有属性 ...
- Linux下性能监控的三把军刀
Linux主机怎么管,十八般兵器件件都可以算得上是瑞士军刀,称手的兵器一两件即可,最常用的,莫过于stat家族三兄弟吧. 计算机主要资源是什么?CPU.内存和磁盘?尽管现在云计算技术有多普及,查看一个 ...
- [Algorithm] Reverse array of Chars by word
For example we have: ["p", "r", "e", "f", "e", &qu ...