跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2010. The Child and Polygon

    ID: 2016 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 9 上传者: 标签>动态规划计算几何数学挑战难度共享题库Codeforces英文题面题目来源题面语言

The Child and Polygon

题目描述

E. The Child and Polygon
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

This time our child has a simple polygon. He has to find the number of ways to split the polygon into non-degenerate triangles, each way must satisfy the following requirements:

  • each vertex of each triangle is one of the polygon vertex;
  • each side of the polygon must be the side of exactly one triangle;
  • the area of intersection of every two triangles equals to zero, and the sum of all areas of triangles equals to the area of the polygon;
  • each triangle must be completely inside the polygon;
  • each side of each triangle must contain exactly two vertices of the polygon.

The picture below depicts an example of a correct splitting.

Please, help the child. Calculate the described number of ways modulo 1000000007 (109+7) for him.

Input

The first line contains one integer n (3≤n≤200) − the number of vertices of the polygon. Then follow n lines, each line containing two integers. The i-th line contains xi,yi (|xi|,|yi|≤107) − the i-th vertex of the polygon in clockwise or counterclockwise order.

It's guaranteed that the polygon is simple.

Output

Output the number of ways modulo 1000000007 (109+7).

Examples
Input
4
0 0
0 1
1 1
1 0
Output
2
Input
4
0 0
1 0
0 1
-1 0
Output
1
Input
5
0 0
1 0
1 1
0 1
-2 -1
Output
3
Note

In the first sample, there are two possible splittings:

In the second sample, there are only one possible splitting:


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1597 题。保留原作者与原赛事署名。