旋转卡壳
文章平均质量分 76
ehi11
这个作者很懒,什么都没留下…
展开
-
Triangle 两次旋转卡壳
#include #include #include #include #include using namespace std; const int X = 50001; struct node{ int x,y; friend bool operator < (node a,node b) { return a.y<b.y||(a.y==b.y原创 2012-08-13 22:08:29 · 473 阅读 · 0 评论 -
The Shape of Donggua 工大的原创几何题 挺好,顶一下。
/*就是用凸包和旋转卡壳求一个最远点对和最近的距离。 这个最近的距离定义为用两条平行直线将多边形包围时直线中的所有距离里求最小即可。 只需要在卡到最远点跳出while循环时记录下此时最远点到边的距离即可。 我用叉积来记录。然后不断更新最小值即可。*/ #include #include #include #include #define ll 0.618-0.1 #define rr 0.原创 2012-08-13 22:05:53 · 881 阅读 · 0 评论