A971.Triangles--Silver

普及+/提高

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Farmer John would like to create a triangular pasture for his cows.
There are NN fence posts (3N1053\le N\le 10^5) at distinct points (X1,Y1)(XN,YN)(X_1, Y_1) \ldots (X_N, Y_N) on the 2D map of his farm. He can choose three of them to
form the vertices of the triangular pasture as long as one of the sides of the
triangle is parallel to the xx-axis and another side is parallel to the
yy-axis.
What is the sum of the areas of all possible pastures that FJ can form?

输入格式

  • Test case 2 satisfies N=200.N=200.
  • Test cases 3-4 satisfy N5000.N\le 5000.
  • Test cases 5-10 satisfy no additional constraints.

输出格式

The first line contains N.N.
Each of the next NN lines contains two integers XiX_i and YiY_i, each in the
range 104104-10^4 \ldots 10^4 inclusive, describing the location of a fence post.

输入输出样例

  • 输入#1

    As the sum of areas is not necessarily be an integer and may be very large,
    output the remainder when **two times** the sum of areas is taken modulo
    $10^9+7$.
    

    输出#1

    4
    0 0
    0 1
    1 0
    1 2
    

说明/提示

3

首页