#P4671. [BalticOI 2011 Day2] Polygon

[BalticOI 2011 Day2] Polygon

题目描述

A simple polygon with NN vertices is drawn on an infinite rectangular grid. For such a polygon, only neighboring edges touch at their common vertex; no other of its edges intersect or touch. All vertices of the polygon lie on grid points, i.e., vertices have integer coordinates.

Your task is to find the total length of grid line segments which lie strictly inside the given polygon (these line segments are highlighted in the drawings below).

输入格式

The first line of input contains a single integer NN, the number of vertices of the polygon. Each of the following NN lines contains two integers xx and yy, the coordinates of one vertex. The vertices are given either in clockwise or counterclockwise order. All vertices are distinct, but more than two consecutive vertices may lie on a line.

输出格式

The only line of output must contain a decimal number: the total length of grid line segments which lie strictly inside the given polygon.

题目大意

在平面直角网格图中有一个简单多边形,它有 NN 个顶点,每个顶点都在格点上(格点=整点)。
试求:严格在多边形内部的网格线有多长。在「样例解释」中, 严格在多边形内部的网格线将会加粗显示。
请注意精度。设你的答案为 LL,标准答案为 RR,则只需满足 LRR×106|L - R| \le R \times 10^{-6}LR<=106|L - R| <= 10^{-6} 两个条件中的其中一个即可得分。

样例输入

第一行有一个整数 NN
在接下来的 NN 行中,每行两个整数 xxyy,表示一个顶点的坐标。

样例输出

输出仅一行,一个数,表示严格在多边形内部的网格线的长度。

样例解释 1

符合要求的横线之长为 43+83=4\frac{4}{3} + \frac{8}{3} =4,竖线之长为 3+2+1=63+2+1=6。总长 4+6=104+6=10

样例解释 2

符合要求的横线之长为 1+2+4=71+2+4=7,竖线之长为 94+32+74=5.5\frac{9}{4}+\frac{3}{2}+\frac{7}{4}=5.5。总长 7+5.5=12.57+5.5=12.5

翻译提供者:Planet6174

3
5 1
2 4
1 1
10.0
5
0 0
-2 2
-2 -1
2 -2
2 0
12.5

提示

Sample Explanation 1

The length of horizontal lines is 43+83=4\frac{4}{3} + \frac{8}{3} = 4. The length of vertical lines is 3+2+1=63 + 2 + 1 = 6. The total length is 4+6=104 + 6 = 10.

Sample Explanation 2

The length of horizontal lines is 1+2+4=71+2+4 = 7. The length of vertical lines is 94+32+74=5.5\frac{9}{4}+\frac{3}{2}+\frac{7}{4} = 5.5. The total length is 7+5.5=12.57 + 5.5 = 12.5.

数据范围

对于 50%50\% 的数据,多边形所有的边均在网格线上。

对于所有数据,$3 \le N \le 10^5,-5 \times 10^8 \le x,y \le 5 \times 10^8$。