2020年3月16日

UVA 10173 Smallest Bounding Rectangle (求凸包最小面积外接矩阵、旋转卡壳)

摘要: 题目:传送门 思路: 计算过程出处:戳 计算全部四个多边形的端点, 称之为 xminP, xmaxP, yminP, ymaxP。 通过四个点构造 P 的四条切线。 他们确定了两个“卡壳”集合。 如果一条(或两条)线与一条边重合, 那么计算由四条线决定的矩形的面积, 并且保存为当前最小值。 否则将当 阅读全文

posted @ 2020-03-16 23:17 Willems 阅读(343) 评论(0) 推荐(0) 编辑

POJ 3608 Bridge Across Islands (两凸包间最短距离 + 旋转卡壳)

摘要: 题目:传送门 经典题 代码大部分参考了:kuangbin #include <iostream> #include <stdio.h> #include <string.h> #include <algorithm> #include <queue> #include <map> #include 阅读全文

posted @ 2020-03-16 16:44 Willems 阅读(212) 评论(0) 推荐(0) 编辑

导航