NC222479. [USACODec2020S]RectangularPasture
描述
输入描述
The first line contains a single integer N. Each of the next N lines Each of the next N lines contains two space-separated integers, indicating the (x,y) coordinates of a cow's cell. All x coordinates are distinct from each-other, and all y coordinates are distinct from each-other. All x and y values lie in the range 0…109.
输出描述
The number of subsets of cows that FJ can fence off. It can be shown that this quantity fits within a signed 64-bit integer (e.g., a "long long" in C/C++).
示例1
输入:
4 0 2 1 0 2 3 3 5
输出:
13
说明:
There are 24 subsets in total. FJ cannot create a fence enclosing only cows 1, 2, and 4, or only cows 2 and 4, or only cows 1 and 4, so the answer is 24−3=16−3=13.