---------------计算几何
文章平均质量分 51
dxyinme
这个作者很懒,什么都没留下…
展开
-
[BZOJ2338][HNOI2011]数矩形
Time Limit: 20 Sec Memory Limit: 128 MBDescriptionSample Input8 -2 3 -2 -1 0 3 0 -1 1 -1 2 1 -3 1 -2 1 Sample Output10 题解:找出任意两点间的连线作为对角线,按照长度为第一关键字,中点坐标为第二关键字排序,然后在所有长度相同,中点坐标一样的对角线集合中寻找答案,因为每一个集合最多原创 2017-10-22 14:56:02 · 294 阅读 · 0 评论 -
[VIJOS1056]图形面积
描述桌面上放了N个平行于坐标轴的矩形,这N个矩形可能有互相覆盖的部分,求它们组成的图形的面积。输入格式输入第一行为一个数N(1≤N≤100),表示矩形的数量。下面N行,每行四个整数,分别表示每个矩形的左下角和右上角的坐标,坐标范围为–10^8到10^8之间的整数。输出格式输出只有一行,一个整数,表示图形的面积。样例输入3 1 1 4 3 2 -1 3 2 4 0 5 2 样例输出10 题解:我们先将原创 2017-10-23 16:07:14 · 665 阅读 · 0 评论 -
[VIJOS1233]@.@多边形面积
背景 For geometry lover,@.@ 描述 在直角坐标系中,给出n个顶点的坐标,求这n个点所围成的图形的周长和面积。 注意: (1)如果所有点共线则周长按直线的长度计算,面积视为0; (2)如果部分点共线按共线后的多边形计算; (3)所给出的n个顶点如果能围成多边形均为突多边形。 输入格式 第一行输入多边形顶点个数n(3<=n<=10); 接下...原创 2017-10-23 17:02:44 · 306 阅读 · 0 评论 -
[codeforces]166B
ime limit per test : 2 seconds memory limit per test : 256 megabytesYou’ve got another geometrical task. You are given two non-degenerate polygons A and B as vertex coordinates. Polygon A is strictly原创 2017-12-09 19:47:43 · 357 阅读 · 0 评论 -
[一些关于计算几何的新姿势]
1.点射法判断点与多边形关系 对于点P,引出一条水平方向的射线(左右无所谓),得到该射线与多边形相交的边数。若个数为奇数,则在多边形内 部;如为偶数,则在多边形外部。 注意点:①点在多边形的边上。(解决方法:直接在做点射法之前判断一下是否在多边形的边上) ②重复计数了怎么办?(解决方法:我们做出额外声明,对于每条边的端点,按y值分为上端点与下端点。只有经...原创 2018-08-21 17:13:55 · 151 阅读 · 0 评论 -
[codeforces][gym101873]2017-2018 ACM-ICPC German Collegiate Programming Contest (GCPC 2017)
队内训练 6题:CDFGIK C. 有n(n<=1000)n(n<=1000)n(nm(m<=1000)m(m<=1000)m(mT(T<=1000)T(T<=1000)T(Tiii个游乐场的游乐设施耗时tititi,花费pipipi的钱,(1<=ti,pi<=106)(1<=ti,pi<=106)(1X(X<=1000)X(...原创 2018-09-07 12:48:02 · 943 阅读 · 0 评论 -
[codeforces1163C2]Power Transmission (Hard Edition)
This problem is same as the previous one, but has larger constraints. It was a Sunday morning when the three friends Selena, Shiro and Katie decided to have a trip to the nearby power station (do not ...原创 2019-05-17 19:14:57 · 472 阅读 · 0 评论 -
[2019牛客多校训练第五场]three points 1
时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 262144K,其他语言524288K 链接:https://ac.nowcoder.com/acm/contest/885/I 来源:牛客网 分数:2800+,我觉得卡精度很恶心 题目描述 You are given five positive integers w,h,a,b,cw, h, a, b, cw,h,a,b,c. Pl...原创 2019-08-02 10:59:06 · 483 阅读 · 0 评论 -
[HDU6631]line symmetric
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) 分数:2800+ Problem Description You are given a simple polygon in a two-dimensional plane. Please check whether we can m...原创 2019-08-06 18:43:59 · 305 阅读 · 0 评论