问题3374--Arable Area

3374: Arable Area

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

The prime minister has recently bought a piece of valuable agricultural land, which is situated in a valley forming a regular grid of unit square fields. ACM would like to verify the transaction, especially whether the price corresponds to the market value of the land, which is always determined as the number of unit square fields fully contained in it. Your task is to write a program that computes the market value. The piece of land forms a closed polygon, whose vertices lie in the corners of unit fields. For example, the polygon in the picture (it corresponds to the first scenario in Sample Input) contains three square fields.

输入

The input consists of several test scenarios. Each scenario starts with a line containing one integer number N (3 ≤ N ≤ 100), the number of polygon vertices. Each of the following N lines contains a pair of integers Xi and Yi, giving the coordinates of one vertex. The vertices are listed in the order they appear along the boundary of the polygon. You may assume that no coordinate will be less then −100 or more than 100 and that the boundary does not touch or cross itself. The last scenario is followed by a line containing single zero.

输出

For each scenario, output one line with an integer number — the number of unit squares that are completely inside the polygon.

样例输入 Copy

4
1 1
5 3
5 4
3 5
5
3 3
2 5
3 4
5 2
1 1
5
0 0
0 -50
-50 -51
-51 -50
-50 0
0

样例输出 Copy

3
1
2500

来源/分类

CTU Open 2009