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, 这么暴力的算 ...
随机推荐
- Velocity中加载vm文件的三种方式
Velocity中加载vm文件的三种方式: a. 加载classpath目录下的vm文件 /** * 初始化Velocity引擎 * --VelocityEngine是单例模式,线程安全 * @th ...
- SpringMVC3中返回json字符串时500 Internal Server Error的处理方案
搭建 Spring3+MyBatis+Rest+BootStrap+JBPM项目环境后,测试发现了一个操蛋的问题.使用Spring MVC的自动类型转换为JSON时,后台数据List/Map获取完全正 ...
- js延迟执行与循环执行
延迟一段时间执行特定代码: setTimeout(function () { window.location.href = 'login' },1200); 循环执行: function test() ...
- C#+Winform开发窗体程序
学习笔记 第一章:winform基础 一.概述 1.Windows Form(简称WinForm) 是微软.NET平台下用于开发"图形界面"应用程序的组件. 2.C/S架构 客户机 ...
- 7-4 python 接口开发(提供mock服务)
1.登录接口开发(数据存在数据库中) 接口开发做mock(模拟功能) tools.py import pymysql def my_db(sql): conn = pymysql.connect(h ...
- 理解volatile与synchronized
用 volatile 修饰的变量可以保证线程的"可见性",也就是,任何线程修改了这个 volatile 修饰的值都会通知其他线程来主缓存中重新读取值. 下面通过例子加以说明: pu ...
- python__基础 : 类的继承,调用父类的属性和方法
1.继承,调用父类属性方法 在python里面,继承一个类只需要这样写: class Animal: def heshui(self): print('动物正在喝水') class Cat(Anima ...
- php图片压缩-高清晰度
php高清晰度无损压缩 经常会用到把上传的大图片压缩,特别是体积,在微信等APP应用上,也默认都是有压缩的,那么,怎么样对图片大幅度压缩却仍能保持较高的清晰度呢? 压缩通常是有按比例缩放,和指定宽度压 ...
- Codeforces Round #459 (Div. 2) D. MADMAX DFS+博弈
D. MADMAX time limit per test 1 second memory limit per test 256 megabytes input standard input outp ...
- [Hdu1166]敌兵布阵(CQD分治)
CQQ分治 Code #include <cstdio> #include <cstring> #define N 50010 struct info{ int x,p,v; ...