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, 这么暴力的算 ...
随机推荐
- 剑指offer52 构建乘积数组
这个题的错误和c++ primier中名字的作用域例子相似.只是这里将int换成了vecto<int>这种形式. class Solution { public: vector<in ...
- Javascript Ajax 请求
var XMLHttpReq; function createXMLHttpRequest() { try { XMLHttpReq = new ActiveXObject("Msxml2. ...
- shell编程中的vim命令说明
vim命令模式: 1.一般命令模式 2.编辑模式 3.底行命令行命令模式 一般命令模式 直接用字符操作编辑模式 可以写文档(跟txt有点像)底行命令模式 先按'ESC',在按下“:”,之后在输出命令 ...
- =>符号的意义
=> 是 Oracle 中调用存储过程的时候, 指定参数名进行调用.一般是, 某些参数有默认值的时候,你需要跳过某些参数来进行调用. 下面是具体的例子. 参数的默认值SQL> CREATE ...
- JSPatch库, 一个Apple官方支持的实现在线更新iOS应用的库
简介 项目主页: https://github.com/bang590/JSPatch 示例下载: https://github.com/ios122/ios122 JSPatch 可以让你用 Jav ...
- spring-mybatis整合项目 异常处理2
org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'com/imooc ...
- nginx配置安装
先安装pcrepcre作用是让Nginx支持Rewrite功能下载地址:https://sourceforge.net/projects/pcre/files/pcre/,选择最新版本进行下载下载之后 ...
- php-5.6.26源代码 - 扩展模块的种类,扩展模块的执行埋点
模块种类(两种) 类型一:zend的模块:(类似zend_extension=test.so) 识别方法: php.ini中以zend_extension开头的配置,如zend_extension=t ...
- nginx+php整合(是让nginx可以运行php,以及下载地址)
下载地址: nginx:http://nginx.org/en/download.html PHP: https://windows.php.net/download/ 都是官网的自己选择版本 安装文 ...
- jQuery-laye插件实现 弹框编辑,异步验证,form验证提交
代码中用到了 jQuery的ajax异步处理,each()循环,submit()页面验证提交form表单,prepend()追加标签,laye插件的弹框效果(如有其它弹框效果可参考官网:http:// ...