首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
polygons专题
[Codeforces 166B] Polygons (点在凸多边形内)
Codeforces - 166B 判断任意多边形 B是否严格在凸多边形 A内部 点在凸多边形内部试板题 如果 B的所有顶点在 A内,则 B在 A内 由于 A的顶点有 105 10^5个,B的顶点有 104 10^4 个 所以不能用 (n) \mathcal{O}(n)的暴力判断 有一个 (logn) \mathcal{O}(logn) 的二分做法 基本原理是用
阅读更多...
在PostGIS中一个面要素表中的缝隙(Find gaps among polygons in PostGIS)
场景 在PostGIS中有一张面要素表,需要检查该表中的哪些地方有缝隙。 其中缝隙定义为这些多边形的并集中的环。 There is a surface feature table in PostGIS, and it is necessary to check which areas in the table have gaps. The gaps are defined as the ring
阅读更多...
poj1389 Area of Simple Polygons
Area of Simple Polygons 题目背景: poj1389 分析:之前突然发现自己竟然不会线段树+ 扫描线,于是迅速的去找了一道裸题,就是求的矩形的面积并,调了一会儿,主要是没有进行数据update就直接返回导致出错,以后要注意。 Source: #include #include #include #include #include #includ
阅读更多...