E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Distant
uva 1382 -
Distant
Galaxy(枚举)
题目链接:uva1382-DistantGalaxy题目大意:给出n个点,问说一个平行与x轴和y轴的矩形,最多能有多少个点落在边上。解题思路:首先先讲y轴相同的放在一起,然后枚举左右边界,考虑上下边界,维护最大值。#include #include #include usingnamespacestd; constintN=105; structpoint{ intx,y; boolopera
u011328934
·
2014-02-08 20:00
uva1382 -
Distant
Galaxy 部分枚举 递推
YouareobservingadistantgalaxyusingatelescopeabovetheAstronomyTower,andyouthinkthatarectangledrawninthatgalaxywhoseedgesareparalleltocoordinateaxesandcontainmaximumstarsystemsonitsedgeshasagreatdealtod
corncsd
·
2014-02-08 16:00
1382 -
Distant
Galaxy(技巧枚举+离散化)
YouareobservingadistantgalaxyusingatelescopeabovetheAstronomyTower,andyouthinkthatarectangledrawninthatgalaxywhoseedgesareparalleltocoordinateaxesandcontainmaximumstarsystemsonitsedgeshasagreatdealtod
u011217342
·
2014-02-07 01:00
[隐式图搜索]The most
distant
state UVA10085
ProblemATheMostDistantStateInput: standardinputOutput: standardoutput The8-puzzleisasquaretrayinwhicheightsquaretilesareplaced.Theremainingninthsquareisuncovered.Eachtilehasanumberonit.Atilethatisadja
u011194165
·
2014-01-09 21:00
搜索
隐式图
UVA - 1382
Distant
Galaxy
题意:给出平面上的n个点,找到一个矩形,使得边界上包含尽量多的点思路:如果单纯的枚举四条边再计数的话显然时间是不够的,,所以我们可以只枚举上下边界,用on[i],on2[i]表示竖线上位于上下边界之间的点数(区别在on[i]不统计位于上下边界上的点),这样,给定左右边界i,j的时候,矩形边界上的点数为left[j]-left[i]+on[i]+on2[j],当右边界确定的时候,on[i]-left
u011345136
·
2013-12-02 23:00
Shanghai 2006 / UVa 1382
Distant
Galaxy (枚举&扫描&动态维护)
1382-DistantGalaxyTimelimit:3.000seconds http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=460&page=show_problem&problem=4128Youareobservingadistantgalaxyusingatelescopeabo
synapse7
·
2013-11-13 18:00
C++
ACM
uva
POJ 3525 Most
Distant
Point from the Sea 二分+半平面交
题目就是求多变形内部一点。 使得到任意边距离中的最小值最大。 那么我们想一下,可以发现其实求是看一个圆是否能放进这个多边形中。 那么我们就二分这个半径r,然后将多边形的每条边都往内退r距离。 求半平面交看是否存在解即可 #include <iostream> #include <cstdio> #include <cstring>
·
2013-11-01 18:00
ant
UVa:10085 The most
distant
state
八数码问题变形。还是bfs+判重,这里我尝试了set来判重,将9个格映射成一个9位整数。最后跑了3s多,还是很慢。。 #include #include #include #include #include #include #include usingnamespacestd; intM[5][2]={{1,0},{-1,0},{0,1},{0,-1}}; structState { intgr
kkkwjx
·
2013-10-23 13:00
bfs
判重
隐式图遍历
POJ 3525 Most
Distant
Point from the Sea
MostDistantPointfromtheSeaTimeLimit: 5000MS MemoryLimit: 65536KTotalSubmissions: 3610 Accepted: 1667 SpecialJudgeDescriptionThemainlandofJapancalledHonshuisanislandsurroundedbythesea.Insuchanisland,i
u011788531
·
2013-10-21 20:00
Algorithm
数据结构
编程
算法
poj
客户端LBS, 寻找附近的人服务端接口做法
外面再画一个正方形,a=2*
distant
.知道了这个,稍微懂一点几何
陈袁at互联
·
2013-10-21 12:00
LBS
spatial
附近的人
UVALive 3890 Most
Distant
Point from the Sea(凸包最大内接圆)
一个n个点的凸多边形,求多边形中离多边形边界最远的距离。实际上就是求凸包最大内接圆的半径。利用半平面交求解,每次二分枚举半径d,然后将凸包每条边所代表的半平面沿其垂直单位法向量平移d,看所有平移后的半平面的交集是否为空。#include#include#include#include#include#include#include#include#include#include#include#i
yang_bro
·
2013-08-31 21:46
计算几何
UVALive 3890 Most
Distant
Point from the Sea(凸包最大内接圆)
一个n个点的凸多边形,求多边形中离多边形边界最远的距离。实际上就是求凸包最大内接圆的半径。利用半平面交求解,每次二分枚举半径d,然后将凸包每条边所代表的半平面沿其垂直单位法向量平移d,看所有平移后的半平面的交集是否为空。#include #include #include #include #include #include #include #include #include #include
diary_yang
·
2013-08-31 21:00
UVA 10085 The most
distant
state(八数码问题)
TheMostDistantStateInput: standardinputOutput: standardoutput The8-puzzleisasquaretrayinwhicheightsquaretilesareplaced.Theremainingninthsquareisuncovered.Eachtilehasanumberonit.Atilethatisadjacenttoth
u011217342
·
2013-08-12 22:00
uva 10085 The most
distant
state(八数码)
TheMostDistantStateInput: standardinputOutput: standardoutput The8-puzzleisasquaretrayinwhicheightsquaretilesareplaced.Theremainingninthsquareisuncovered.Eachtilehasanumberonit.Atilethatisadjacenttoth
u011328934
·
2013-08-12 21:00
1396 - Most
Distant
Point from the Sea
点击打开链接题意:按顺序给出一小岛(多边形)的点求岛上某点离海最远的距离解法:不断的收缩多边形(求半平面交)直到无限小二分收缩的距离即可如图 //大白p263 #include #include #include #include #include #include #include #include #include #include usingnamespacestd; constdoubl
lfj200411
·
2013-08-12 16:00
poj 3525 Most
Distant
Point from the Sea - 求到海岸最远的点 - 半平面交
/* poj3525MostDistantPointfromtheSea-求到海岸最远的点-半平面交 就是求多边形最大的内接圆的半径 枚举半径 将所有海岸沿法向量向里推进半径的距离,求按平面的交,若多边形还有核,则这个半径存在 */ #include #include #include usingnamespacestd; constdoubleeps=1e-9; structpoint
qq172108805
·
2013-08-10 20:00
uva 1382 -
Distant
Galaxy
点击打开链接uva1382题意:给出平面上的n个点,找出一个矩形,使得边界上含有尽量多的点思路:1很清楚,如果输入的n个点在同一行或者同一列的话那么ans=n。还有一种情况就是n个点的横坐标和纵坐标只有2种,那么这种情况ans=n。2对于这一题我们考虑的是枚举矩形的上下边界(纵坐标),然后利用其它的方法求左右边界,见下图3对于竖线i,我们用left[i]表示竖线左边位于上下边界的点数(不包括位于竖
cgl1079743846
·
2013-04-13 00:00
uva 1382 -
Distant
Galaxy
点击打开链接uva1382题意:给出平面上的n个点,找出一个矩形,使得边界上含有尽量多的点思路:1很清楚,如果输入的n个点在同一行或者同一列的话那么ans=n。还有一种情况就是n个点的横坐标和纵坐标只有2种,那么这种情况ans=n。2对于这一题我们考虑的是枚举矩形的上下边界(纵坐标),然后利用其它的方法求左右边界,见下图3对于竖线i,我们用left[i]表示竖线左边位于上下边界的点数(不包括位于竖
从此醉
·
2013-04-13 00:00
ant
UVA 1396 Most
Distant
Point from the Sea
大意:在大海中央,有一个凸n边形的小岛。你的任务是求出岛上离海最远的点,输出它的距离。思路:二分答案,判断是否有离岛的距离不小于d的点,我们通过半平面求交来判断是否存在满足题意的点,“收缩”多边形可以通过直线的法向量*d来移动,方向向量不变。#include #include #include #include #include #include #include #include
Wall_F
·
2013-04-06 19:00
uva 1382 -
Distant
Galaxy
题目链接1.坐标值比较大,所以离散化坐标2.坐标的绝对值不超过10^9,说明可能有负数,所以把全部坐标移动转换为正数(加上10^9)3.mat[i][j],表示(0,0)(i,j)为对顶点矩形之内包括边界上有多少个点。4.枚举矩形的上下界,然后选择左右边界。对于确定的左边界left和右边界right,假设是下图的R3是left, L3是right,那么数量为:L1+L2+L3-(R1+R2)+R3
shuangde800
·
2013-03-28 14:00
uva 1382 -
Distant
Galaxy
题目链接1.坐标值比较大,所以离散化坐标2.坐标的绝对值不超过10^9,说明可能有负数,所以把全部坐标移动转换为正数(加上10^9)3.mat[i][j],表示(0,0)(i,j)为对顶点矩形之内包括边界上有多少个点。4.枚举矩形的上下界,然后选择左右边界。对于确定的左边界left和右边界right,假设是下图的R3是left,L3是right,那么数量为:L1+L2+L3-(R1+R2)+R3.
king_tt
·
2013-03-28 14:00
ant
uva10085 - The most
distant
state
bfs + 哈希技术,,,超经典,超高效代码:::#include #include #defineMAX1000000 intans,st[MAX][9],head[MAX],next[MAX],posi[MAX],fa[MAX],path[MAX]; intdx[4]={-1,1,0,0},dy[4]={0,0,-1,1}; chardir[4]={'U','D','L','R'}; inth
shankeliupo
·
2013-03-17 10:00
uvalive3695
Distant
Galaxy
题意:给出平面上的n个点,找一个矩形,使得边界上包含尽量多的点。代码:ViewCode1#include 2#include 3#include 4#defineDEBUG 5usingnamespacestd; 6structZZ{ 7intx,y; 8booloperatorb?a:b; 14} 15constintMAXN=100+10; 16ZZp[MAXN]; 17
·
2013-02-12 15:00
live
Distant
Galaxy
#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#pragm
gyarenas
·
2012-11-20 21:00
UVa 10085 - The most
distant
state
八数码问题的变形,bfs+哈希,打印路径时花了点时间,用哈希表next数组的原理进行回退就可以将问题解决。代码如下:#include #include #include #include #include #include usingnamespacestd; constintMAXSIZE=1000003; constintdx[4]={-1,1,0,0}; constintdy[4]={0,
GooMaple
·
2012-10-26 21:00
zoj 2433 Highways(英语是硬伤啊)
Seconds Memory Limit: 65536 KB Special Judge In a
distant
·
2012-10-05 15:00
ZOJ
poj 3525 Most
Distant
Point from the Sea(多边形内最大圆)
MostDistantPointfromtheSeaTimeLimit: 5000MS MemoryLimit: 65536KTotalSubmissions: 2971 Accepted: 1338 SpecialJudgeDescriptionThemainlandofJapancalledHonshuisanislandsurroundedbythesea.Insuchanisland,it
fp_hzq
·
2012-09-05 20:00
vector
input
HP
dataset
output
distance
POJ 3525 Most
Distant
Point from the Sea(半平面交+二分)
转载请注明出处,谢谢http://blog.csdn.net/acm_cxlove/article/details/7854526 by---cxlove题目:一个多边形,求出到边界最近的距离的最大值。http://poj.org/problem?id=3525题目转换成在多边形内可以画一个最大半径为多少的圆。二分答案半径,然后判断是否存在这样一个区域能放入这个圆心。每次在半平面交的时候
ACM_cxlove
·
2012-08-19 13:00
uva 10085 - The most
distant
state
ProblemATheMostDistantStateInput:standardinputOutput:standardoutput The8-puzzleisasquaretrayinwhicheightsquaretilesareplaced.Theremainingninthsquareisuncovered.Eachtilehasanumberonit.Atilethatisadjace
Frankiller
·
2012-08-18 16:00
struct
Integer
input
each
transformation
output
UVA 10085 - The most
distant
state
题目链接: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=110&page=show_problem&problem=1026 类型: 隐式图搜索 原题: The 8-puzzle is a square tray in which eigh
king_tt
·
2012-07-26 00:00
ant
UVA 10085 - The most
distant
state
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=110&page=show_problem&problem=1026类型:隐式图搜索原题:The8-puzzleisasquaretrayinwhicheightsquaretilesareplaced.Theremainingnin
shuangde800
·
2012-07-26 00:00
poj 3525 Most
Distant
Point from the Sea
poj3525MostDistantPointfromtheSea 这个题的题意是给定一个凸多边形表示的海岛,求海岛离大海最远的距离。可以转化为一个凸多边形内部最多能够放入一个多大的圆。显然可以对圆的半径进行二分,但是怎么确定圆心了。确定是否存在圆心,可以把原来的凸多边形往内部移动r(圆的半径)的距离之后,再对新的多边形求半平面交,如果半平面交存在(是个点即可),那么当前大小的圆能够放入。 求
yx
·
2012-07-23 16:00
poj 3525 Most
Distant
Point from the Sea
求能放在凸多边形里的最大圆的半径。我是根据分类刷的==。。上面都有做法捏。二分长度,然后用半平面交验证,如果半平面交后的面积为0,那么就是需要的结果了。注意精度开得稍微大点。我用的N*LOGN的,这个一直不行,因为用这个算法的话,如果半平面交为0,不代表他们缩在一起了,有可能距离过大,交错开了。TT。一直没有好的解决方案。昨晚还开了一个求面积,求半平面交反向后的面积,不过还是不可以,即使他们两个面
zxy_snow
·
2011-07-25 09:00
新博客准备中,欢迎访问
对CSDN博客感到不满意,所以自己写了一个:http://the-
distant
-town.appspot.com/ GAE本来是用python编程,不过据说要用Google特定的数据库,不具备通用性,
shell_picker
·
2011-01-02 14:00
poj 3525 Most
Distant
Point from the Sea
http://acm.pku.edu.cn/JudgeOnline/problem?id=3525半平面交#include#include#include#include#include#include#includeusing namespace std;const double PI = acos( -1.0 );const double inf = 10000.0;const double
A code a day, keeps the girls away!
·
2010-05-03 00:00
Ruby Enterprise Edition 1.8.7-20090928 released
In the not so
distant
past we launched a Ruby Enterprise Edition sponsorship campaign.
love~ruby+rails
·
2009-09-30 08:00
OS
Ruby
Rails
performance
twitter
The most
distant
way in the world
ThemostdistantwayintheworldThemostdistantwayintheworldisnotthewayfrombirthtotheend.itiswhenisitnearyouthatyoudon'tunderstandiloveu.Themostdistantwayintheworldisnotthatyou'renotsureiloveu.Itiswhenmylov
carpetknight
·
2008-09-10 23:00
distance
The most
distant
way in the world
ThemostdistantwayintheworldThemostdistantwayintheworldisnotthewayfrombirthtotheend.itiswhenisitnearyouthatyoudon'tunderstandiloveu.Themostdistantwayintheworldisnotthatyou'renotsureiloveu.Itiswhenmylov
诗特林-sterning
·
2008-05-25 08:00
The most
distant
way in the world
themostdistantwayintheworldisnotthewayfrombirthtotheend.itiswhenisitnearyouthatyoudunderstandiloveu.themostdistantwayintheworldisnotthatyou'renotsureiloveu.itiswhenmyloveisbewilderingthesoulbutican't
刀博士
·
2006-03-04 22:47
Way
in
the
most
distant
上一页
1
2
3
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他