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
poj2398
ACM-计算几何之Toy Storage——
poj2398
http://www.4shared.com/folder/yc1vvVlL/_20140419.htmlhttp://www.4shared.com/folder/n4oVZbIm/_20140419.htmlhttp://www.4shared.com/folder/JLLQD7aN/_20140419.htmlhttp://www.4shared.com/folder/ZnifiG3X/_2
tskdfvzw
·
2020-08-12 18:55
[
POJ2398
]Toy Storage(计算几何+二分)
题目描述传送门题解同POJ2318代码#include#include#include#include#includeusingnamespacestd;#defineN10005constdoubleeps=1e-9;intdcmp(doublex){if(x=-eps)return0;return(x>0)?1:-1;}structVector{doublex,y;Vector(doubleX
Clove_unique
·
2017-01-01 16:05
题解
计算几何
poj2398
/***************************************************************\ *Author:Hu Wenbiao *Created Time: Tue 27 Jul 2010 07:10:34 PM CST *File Name: main.cpp *Description:几何题目。对poj2318的扩展 \***
·
2015-10-31 11:47
poj
POJ2398
(计算几何)
POJ2318的升级版,就是增加了边界的排序。#include #include #include #include #include usingnamespacestd; #definemaxn5111 #definex1x_1 #definex2x_2 #definey1y_1 #definey2y_2 #definefindFind structnode{ doublex1,y1,x2,y
morejarphone
·
2015-10-30 20:00
poj2398
同2318 在其基础上,输入需要排序,输出稍复杂 #include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> using namespace std; #define maxn
·
2015-10-28 09:49
poj
ACM-计算几何之Toy Storage——
poj2398
ToyStorage题目:http://poj.org/problem?id=2398DescriptionMomanddadhaveaproblem:theirchild,Reza,neverputshistoysawaywhenheisfinishedplayingwiththem.TheygaveRezaarectangularboxtoputhistoysin.Unfortunately,
lx417147512
·
2014-04-12 19:00
ACM
storage
计算几何
Toy
poj2398
poj2318
poj2398
http://poj.org/problem?id=2318题意不难理解,如图,我的代码是以线段作为最基本单位。其实一开始时写的代码是有一个四边形的概念的,如果点在四边形内,点和左边界的点乘积再乘以点和右边界的点乘积是负的,如图:但是这样太慢,而且,原题目给出的是排好序的格子序列,如图:所以可以二分查找,故有如下代码:#include #include #include usingnamespa
zhengnanlee
·
2013-07-24 19:00
计算几何学
ACM解题报告
poj2398
- Toy Storage
想看更多的解题报告:http://blog.csdn.net/wangjian8006/article/details/7870410 转载请注明出处:http://blog.csdn.net/wangjian8006题目大意:意思与poj2318一样,只不过给出的线段
wangjian8006
·
2013-04-16 10:00
【计算几何】
poj2398
Toy Storage
ToyStoragehttp://poj.org/problem?id=2398DescriptionMomanddadhaveaproblem:theirchild,Reza,neverputshistoysawaywhenheisfinishedplayingwiththem.TheygaveRezaarectangularboxtoputhistoysin.Unfortunately,Rez
ACM_Ted
·
2012-08-01 09:00
poj2398
叉积之点定位+二分
问题说白了就是:看给定的点在哪两个线段之间。根据题目的描述,给定的点要么在线段左边,要么右边,所以需做一个叉积,来判定点与两条线段的位置关系(具体如下面的FindBelongBinIndex()函数描述)。 因为线段是排好序的了,所以可以二分查找。 #include #include usingnamespacestd; structPoint2D { Point2D() {
qiul12345
·
2012-07-31 16:00
poj2398
计算几何
poj2318的升级版,只是中间的n个隔板未排序,输出的是装有i个玩具的区域的个数,其他完全一样poj2318的解题报告见http://blog.csdn.net/non_cease/article/details/7754382#include #include #include #include usingnamespacestd; structPoint{ intx,y; }; stru
Non_Cease
·
2012-07-17 14:00
struct
上一页
1
下一页
按字母分类:
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
其他