시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB222100.000%

문제

Everyone knows that every other booth at the Zagreb Christmas Market was actually set up just by pulling the right strings. This year the authorities have decided to send an inspection to penalize the booths that were set up illegitimately

There are $n$ booths, which can be represented by points in the plane, where no three of them lie on the same line. The authorities will identify the booths ruled by corruption and fence them off from the rest of the town. The fence will surround the mentioned booths and it will form the shape of the smallest convex polygon containing all of them. In other words, the fence can be thought of as the boundary of the convex hull of the chosen set of points. Unfortunately, it’s possible that some of the innocent booths become fenced off as well.

Before an on-site inspection, the authorities estimate that the probability of corruption of any particular booth is 50%. Having this in mind, they wonder what is the expected number of booths which will end up being fenced off. The expected value is defined by multiplying the probability of a certain subset of booths being chosen by the number of booths fenced off in that choice, and summing this up for all possible choices of the subset. Of course, if the chosen subset consists of less than three points, the convex hull is degenerate, i.e. a segment, point or the empty set.

It can be proven that the desired expected value can be written in the form $\frac{m}{2^n}$, for some positive integer $m$. The authorities would like to know the expected value, so they kindly ask you to compute the value of $m$. Since the answer can be very large, you should print it modulo $10^9 + 7$.

입력

The first line contains a positive integer $n$ ($1 ≤ n ≤ 1000$), the number of booths.

The $i$-th of the next $n$ lines contains a pair of positive integers $x_i$, $y_i$ ($|x_i|, |y_i| ≤ 10^6$), which represent the $x$ and $y$ coordinates of the $i$-th booth, respectively. No two booths have the same location.

No three booths will lie on the same line.

출력

In the only line print the number $m$ described above, modulo $10^9 + 7$.

서브태스크

번호배점제한
110

All points are on the boundary of the convex hull of all points and $n ≥ 3$.

230

All points except the first one are on the boundary of the convex hull of all points, which is is the interior, and $n ≥ 4$, $x_1 = y_1 = 0$.

310

$1 ≤ n ≤ 15$

430

$1 ≤ n ≤ 100$

530

No additional constraints.

예제 입력 1

1
5 5

예제 출력 1

1

예제 입력 2

3
-1 -1
1 -1
0 1

예제 출력 2

12

예제 입력 3

5
0 0
-1 0
2 -1
3 2
0 3

예제 출력 3

83

힌트

Clarification of the first example: There is a probability of 50% that the first and only booth gets fenced off, so the expected value is $\frac{1}{2}$.

Clarification of the second example: There are eight possible choices for a subset, and the number of fenced off booths for those choices is 0, 1, 1, 1, 2, 2, 2, 3. The expected value is then $\frac{1}{8}(0 + 1 + 1 + 1 + 2 + 2 + 2 + 3) = \frac{12}{8}$.

채점 및 기타 정보

  • 예제는 채점하지 않는다.