Baltic Olympiad in Informatics: 2011 Day 2, Problem 3
A simple polygon with
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).
Constraints
Input Specification
The first line of input contains a single integer
Output Specification
The only line of output must contain a decimal number: the total length of grid line segments which lie strictly inside the given polygon.
Your answer will be accepted if it is within a relative error of
Sample Input 1
3
5 1
2 4
1 1
Sample Output 1
10.0
Explanation for Sample 1
The length of horizontal lines is
Sample Input 2
5
0 0
-2 2
-2 -1
2 -2
2 0
Sample Output 2
12.5
Explanation for Sample 2
The length of horizontal lines is
Comments