시간 제한메모리 제한제출정답맞힌 사람정답 비율
8 초 (추가 시간 없음) 512 MB0000.000%

문제

Open Binary and Object Group organizes a programming contest every year. Mr. Hex belongs to this group and joins the judge team of the contest. This year, he created a geometric problem with its solution for the contest. The problem required a set of points forming a line-symmetric polygon for the input. Preparing the input for this problem was also his task. The input was expected to cover all edge cases, so he spent much time and attention to make them satisfactory.

However, since he worked with lots of care and for a long time, he got tired before he finished. So He might have made mistakes - there might be polygons not meeting the condition. It was not reasonable to prepare the input again from scratch. The judge team thus decided to find all line-asymmetric polygons in his input and fix them as soon as possible. They asked a programmer, just you, to write a program to find incorrect polygons.

You can assume the following:

  • Edges of the polygon must not cross or touch each other except for the end points of adjacent edges.
  • It is acceptable for the polygon to have adjacent three vertexes on a line, but in such a case, there must be the vertex symmetric to each of them.

입력

The input consists of a set of points in the following format.

N
x1 y1
x2 y2
...
xN yN

The first line of the input contains an integer N (3 ≤ N ≤ 1000), which denotes the number of points. The following N lines describe each point. The i-th line contains two integers x1y1 (-10000 ≤ xiyi ≤ 10000), which denote the coordinates of the i-th point.

Note that, although the points are the vertexes of a polygon, they are given in an artibrary order, not necessarily clockwise or counterclockwise.

출력

Output "Yes" in a line if the points can form a line-symmetric polygon, otherwise output "No".

예제 입력 1

4
0 1
1 0
0 0
1 1

예제 출력 1

Yes

예제 입력 2

4
0 1
1 -1
0 0
1 1

예제 출력 2

No

예제 입력 3

9
-1 1
0 1
1 1
-1 0
0 0
1 0
-1 -1
0 -1
1 -1

예제 출력 3

No

예제 입력 4

3
-1 -1
0 0
1 1

예제 출력 4

No

예제 입력 5

4
0 2
0 0
-1 0
1 0

예제 출력 5

Yes