시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 128 MB405313.043%

문제

You are an IT system administrator in the Ministry of Defense of Polygon Country.

Polygon Country's border forms the polygon with \(N\) vertices. Drawn on the 2D-plane, all of its vertices are at the lattice points and all of its edges are parallel with either the \(x\)-axis or the \(y\)-axis.

In order to prevent enemies from invading the country, it is surrounded by very strong defense walls along its border. However, on the vertices, the junctions of walls have unavoidable structural weaknesses. Therefore, enemies might attack and invade from the vertices.

To observe the vertices and find an invasion by enemies as soon as possible, the ministry decided to hire some guards. The ministry plans to locate them on some vertices such that all the vertices are observed by at least one guard. A guard at the vertex \(A\) can observe a vertex \(B\) if the entire segment connecting \(A\) and \(B\) is inside or on the edge of Polygon Country. Of course, guards can observe the vertices they are located on. And a guard can observe simultaneously all the vertices he or she can observe.

To reduce the defense expense, the ministry wants to minimize the number of guards. Your task is to calculate the minimum number of guards required to observe all the vertices of Polygon Country.

입력

The input is formatted as follows.

N
X1 Y1
:
:
XN YN

The first line contains an even integer \(N\) (\(4 \le N \lt 40\)). The following \(N\) lines describe the vertices of Polygon Country. Each of the lines contains two integers, \(X_i\) and \(Y_i\) (\(1 \le i \le N\), \(\lvert X_i \rvert \le 1{,}000\), \(\lvert Y_i \rvert \le 1{,}000\)), separated by one space. The position of the \(i\)-th vertex is \((X_i,Y_i)\).

If \(i\) is odd, \(X_i = X_{i+1}\), \(Y_i \ne Y_{i+1}\). Otherwise, \(X_i \ne X_{i+1}\), \(Y_i = Y_{i+1}\). Here, we regard that \(X_{N+1} = X_1\), and \(Y_{N+1} = Y_1\). The vertices are given in counterclockwise order under the coordinate system that the \(x\)-axis goes right, and the \(y\)-axis goes up. The shape of Polygon Country is simple. That is, each edge doesn’t share any points with other edges except that its both end points are shared with its neighbor edges.

출력

Print the minimum number of guards in one line.

예제 입력 1

8
0 2
0 0
2 0
2 1
3 1
3 3
1 3
1 2

예제 출력 1

1

예제 입력 2

12
0 0
0 -13
3 -13
3 -10
10 -10
10 10
-1 10
-1 13
-4 13
-4 10
-10 10
-10 0

예제 출력 2

2