HDU 4189 Cybercrime Donut Investigation 线段树+思路
参考:http://www.cnblogs.com/slon/archive/2012/03/30/2426104.html
题意:给一个有n个点的点集,有q个询问,每个询问询问一个点p,求与p曼哈顿距离最小的点,并输出曼哈顿距离的最小值。
分析:使得abs(qx - xi) + abs(qy - yi)最小,因为带了个绝对值,所以没法直接套用一些数据结构中查询最值的操作,一时间也没什么头绪。后来看到上面的博客,才明白可以分情况讨论,把绝对值去掉。
一共四种情况:
qx >= xi && qy >= yi
qx >= xi && qy <= yi
qx <= xi && qy >= yi
qx <= xi && qy <= yi
以第一种情况为例分析,其他三种情况分析方法相同。
当 qx > xi && qy > yi 时,直接去绝对值得到:qx - xi + qy - yi = ( qx + qy ) - ( xi +yi ),因为对于每个查询qx + qy相当于一个常数,所以若使qx - xi + qy - yi最小,则 (xi + yi) 最大即可。
于是就转换成了单点更新+区间查最值问题。
线段树离线处理:将点集和查询一块考虑,按上述四种情况分别对点排序,x为第一优先级,y为第二优先级。
将y坐标离散化。
对于每个询问,查询其所属的区间中的最大值。
PS1.其实不用搞四次的,不过这样比较好理解……
PS2.sort函数要仔细考虑一下,跟循环正着跑还是倒着跑有关,之前这里没考虑清楚,样例都跑不对。
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm> #define LL long long int
#define lson l, m, rt << 1
#define rson m + 1, r, rt << 1 | 1 using namespace std; const int MAXN = + ;
const LL INF = 1LL << ; struct node
{
LL x, y;
int id;
void readNode()
{
scanf( "%I64d%I64d", &x, &y );
return;
}
}; bool cmp1( node a, node b )
{
if ( a.x != b.x ) return a.x < b.x;
if ( a.y != b.y ) return a.y < b.y;
return a.id < b.id;
} bool cmp2( node a, node b )
{
if ( a.x != b.x ) return b.x < a.x;
if ( a.y != b.y ) return a.y < b.y;
return b.id < a.id;
} bool cmp3( node a, node b )
{
if ( a.x != b.x ) return b.x < a.x;
if ( a.y != b.y ) return a.y < b.y;
return a.id < b.id;
} bool cmp4( node a, node b )
{
if ( a.x != b.x ) return a.x < b.x;
if ( a.y != b.y ) return a.y < b.y;
return b.id < a.id;
} int N, Q;
int all, cntY;
node D[MAXN];
LL maxi[ MAXN << ];
LL ans[MAXN];
LL hashY[MAXN]; void build( int l, int r, int rt )
{
maxi[rt] = -INF;
if ( l == r ) return;
int m = ( l + r ) >> ;
build( lson );
build( rson );
return;
} void PushUp( int rt )
{
maxi[rt] = max( maxi[rt << ], maxi[rt << | ] );
} void update( LL val, int pos, int l, int r, int rt )
{
if ( l == pos && r == pos )
{
maxi[rt] = max( maxi[rt], val );
return;
}
int m = ( l + r ) >> ;
if ( pos <= m ) update( val, pos, lson );
else update( val, pos, rson );
PushUp( rt );
return;
} LL query( int L, int R, int l, int r, int rt )
{
if ( L <= l && r <= R )
{
return maxi[rt];
} LL res = -INF;
int m = ( l + r ) >> ;
if ( L <= m ) res = max( res, query( L, R, lson ) );
if ( R > m ) res = max( res, query( L, R, rson ) );
return res;
} void init()
{
for ( int i = ; i < N; ++i )
{
D[i].readNode();
D[i].id = -;
hashY[i] = D[i].y;
}
scanf( "%d", &Q );
for ( int i = ; i < Q; ++i )
{
D[ N + i ].readNode();
D[ N + i ].id = i;
hashY[ N + i ] = D[N + i].y;
ans[i] = INF;
} all = N + Q;
sort( hashY, hashY + all );
cntY = unique( hashY, hashY + all ) - hashY;
return;
} int main()
{int cas = ;
while ( scanf( "%d", &N ), N != - )
{
init();
build( , cntY, );
sort( D, D + all, cmp1 ); for ( int i = ; i < all; ++i )
{
int id = lower_bound( hashY, hashY + cntY, D[i].y ) - hashY;
++id;
if ( D[i].id == - ) update( D[i].x + D[i].y, id, , cntY, );
else
{
ans[ D[i].id ] = min( ans[ D[i].id ], D[i].x + D[i].y - query( , id, , cntY, ) );
}
} build( , cntY, );
sort( D, D + all, cmp2 );
for ( int i = all - ; i >= ; --i )
{
int id = lower_bound( hashY, hashY + cntY, D[i].y ) - hashY;
++id;
if ( D[i].id == - ) update( D[i].x - D[i].y, id, , cntY, );
else
{
ans[ D[i].id ] = min( ans[ D[i].id ], D[i].x - D[i].y - query( id, cntY, , cntY, ) );
}
} build( , cntY, );
sort( D, D + all, cmp3 );
for ( int i = ; i < all; ++i )
{
int id = lower_bound( hashY, hashY + cntY, D[i].y ) - hashY;
++id;
if ( D[i].id == - ) update( D[i].y - D[i].x, id, , cntY, );
else
{
ans[ D[i].id ] = min( ans[ D[i].id ], D[i].y - D[i].x - query( , id, , cntY, ) );
}
} build( , cntY, );
sort( D, D + all, cmp4 );
for ( int i = all - ; i >= ; --i )
{
int id = lower_bound( hashY, hashY + cntY, D[i].y ) - hashY;
++id;
if ( D[i].id == - ) update( -D[i].x - D[i].y, id, , cntY, );
else
{
ans[ D[i].id ] = min( ans[ D[i].id ], -D[i].x - D[i].y - query( id, cntY, , cntY, ) );
}
} if ( cas ) puts("");
for ( int i = ; i < Q; ++i )
printf( "%I64d\n", ans[i] );
++cas;
}
return ;
}
HDU 4189 Cybercrime Donut Investigation 线段树+思路的更多相关文章
- HDU 3016 Man Down (线段树+dp)
HDU 3016 Man Down (线段树+dp) Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Ja ...
- HDU.5692 Snacks ( DFS序 线段树维护最大值 )
HDU.5692 Snacks ( DFS序 线段树维护最大值 ) 题意分析 给出一颗树,节点标号为0-n,每个节点有一定权值,并且规定0号为根节点.有两种操作:操作一为询问,给出一个节点x,求从0号 ...
- HDU.1556 Color the ball (线段树 区间更新 单点查询)
HDU.1556 Color the ball (线段树 区间更新 单点查询) 题意分析 注意一下pushdown 和 pushup 模板类的题还真不能自己套啊,手写一遍才行 代码总览 #includ ...
- HDU.1166 敌兵布阵 (线段树 单点更新 区间查询)
HDU.1166 敌兵布阵 (线段树 单点更新 区间查询) 题意分析 加深理解,重写一遍 代码总览 #include <bits/stdc++.h> #define nmax 100000 ...
- HDU.1394 Minimum Inversion Number (线段树 单点更新 区间求和 逆序对)
HDU.1394 Minimum Inversion Number (线段树 单点更新 区间求和 逆序对) 题意分析 给出n个数的序列,a1,a2,a3--an,ai∈[0,n-1],求环序列中逆序对 ...
- HDU.1689 Just a Hook (线段树 区间替换 区间总和)
HDU.1689 Just a Hook (线段树 区间替换 区间总和) 题意分析 一开始叶子节点均为1,操作为将[L,R]区间全部替换成C,求总区间[1,N]和 线段树维护区间和 . 建树的时候初始 ...
- hdu 1754 I Hate It 线段树 点改动
// hdu 1754 I Hate It 线段树 点改动 // // 不多说,裸的点改动 // // 继续练 #include <algorithm> #include <bits ...
- hdu 1166 敌兵布阵 线段树 点更新
// hdu 1166 敌兵布阵 线段树 点更新 // // 这道题裸的线段树的点更新,直接写就能够了 // // 一直以来想要进线段树的坑,结果一直没有跳进去,今天算是跳进去吧, // 尽管十分简单 ...
- R - Weak Pair HDU - 5877 离散化+权值线段树+dfs序 区间种类数
R - Weak Pair HDU - 5877 离散化+权值线段树 这个题目的初步想法,首先用dfs序建一颗树,然后判断对于每一个节点进行遍历,判断他的子节点和他相乘是不是小于等于k, 这么暴力的算 ...
随机推荐
- 将matlab处理结果保存为图像文件
imwrite(testIm, 'Data/Test/testIm.bmp', 'BMP');
- chrome 浏览器插件开发(二)—— 通信 获取页面变量 编写chrome插件专用的库
在chrome插件的开发过程中,我遇到了一些问题,在网上找了不少文章,可能是浏览器升级的原因,有一些是有效的也有无效的.下面我简单的分享一下我遇到的坑,以及我把这些坑的解决方案整理而成的js库 —— ...
- js另类值交换
当我们有a.b两个值,想要交换,通常是要声明第三个变量,但是我最近看到这样一种不用声明第三个变量的处理方法: var a=1,b=2; a=[b,b=a][0]; 其实还是在内存中开出了一个新的空间( ...
- iframe的Dom操作
我最近遇到这样一个需求, 抛开业务相关不谈,但从技术上说:页面中选择公司中的页面,在iframe中展示被选的页面,并且要对页面做一些Dom相关的处理.也就是说我们需要在父级页面中操作子页面(ifram ...
- securecrt颜色设置
https://blog.csdn.net/zq710727244/article/details/53909801
- 【树链剖分 ODT】cf1137F. Matches Are Not a Child's Play
孔爷的杂题系列:LCT清新题/ODT模板题 题目大意 定义一颗无根树的燃烧序列为:每次选取编号最小的叶子节点形成的序列. 要求支持操作:查询一个点$u$在燃烧序列中的排名:将一个点的编号变成最大 $n ...
- linux下Tomcat配置提示权限不够解决办法
在终端输入命令 sudo chmod -R 777 /opt/Tomcat,那么Tomcat文件夹和它下面的所有子文件夹的属性都变成了777(读/写/执行权限)
- fastadmin 后台管理框架使用技巧(持续更新中)
fastadmin 后台管理框架使用技巧(持续更新中) FastAdmin是一款基于ThinkPHP5+Bootstrap的极速后台开发框架,具体介绍,请查看文档,文档地址为:https://doc. ...
- 基于form表单submit提交不跳转
方法一:target <html> <body> <form action="" method="post" target=&qu ...
- Python学习笔记:json模块和pickle模块(数据序列化)
Python中的json模块和pickle都是用于数据的序列化和反序列化,它们提供的方法也是一样的:dumps,dump,loads,load dumps(obj):将对象序列化为str. dump( ...