New Year and Cake

题意翻译

- 给定一个 $n$ 个顶点的严格凸多边形。 - 要求 $\frac{n(n-3)}2$ 个**由对角线将多边形割成两个部分的面积差 $\times 2$** 之和。 - $n \le 5 \times 10^5$,答案对 $10^9+7$ 取模。

题目描述

Limak is a little polar bear. According to some old traditions, his bear family prepared a New Year cake. And Limak likes cakes. As you may know, a New Year cake is a strictly convex polygon with $ n $ vertices. Parents won't allow Limak to eat more than half of a cake because he would get sick. After some thinking they decided to cut a cake along one of $ n·(n-3)/2 $ diagonals. Then Limak will get a non-greater piece. Limak understands rules but he won't be happy if the second piece happens to be much bigger. Limak's disappointment will be equal to the difference between pieces' areas, multiplied by two. It can be proved that it will be integer for the given constraints. There are $ n·(n-3)/2 $ possible scenarios. Consider them all and find the sum of values of Limak's disappointment, modulo $ 10^{9}+7 $ .

输入输出格式

输入格式


The first line of the input contains a single integer $ n $ ( $ 4<=n<=500000 $ ) — the number of vertices in the polygon denoting the cake. Each of the next $ n $ lines contains two integers $ x_{i} $ and $ y_{i} $ ( $ |x_{i}|,|y_{i}|<=10^{9} $ ) — coordinates of the $ i $ -th point. It's guaranteed that all points are distinct, polygon is strictly convex and points are given in the clockwise order.

输出格式


Print the sum of values of Limak's disappointment over all possible scenarios modulo $ 10^{9}+7 $ .

输入输出样例

输入样例 #1

5
2 4
2 7
5 7
5 4
3 -2

输出样例 #1

90

输入样例 #2

4
-1000000000 -5000000
0 1234567
1 1
-5 -100000000

输出样例 #2

525185196

输入样例 #3

8
-10 0
-6 6
0 10
6 6
10 0
6 -6
0 -10
-6 -6

输出样例 #3

5216

说明

In the first sample possible values of Limak's disappointment are $ 0,18,18,24,30 $ .