[Ceoi2013]adriatic

时间限制:40s    【提交】    空间限制:256MB

题目描述

琪琪在大海上搜索涛涛,琪琪把大海分为2500*2500的网格,现在琪琪拥有N条小帆船,她可以在船之间移动,由于风向的原因,她只能从一条船移动到位于这条船严格左上方或严格右下方的船。对于

每条帆船,琪琪想要知道从这条船跳到其他各条船的最小跳转次数和。


输入格式

The first line of input contains an integer   N (3 ≤ N ≤ 250 000), the number of islands. The following   N lines

contain the locations of the islands. Each location is a pair of integers between 1 and 2500 (inclusive), the row and column numbers, respectively.


第一行包含一个数N,表示帆船的个数。
接下来的N行,每行包含一对数(x,y),表示帆船的位置


输出格式

The output should contain   N lines. For each island, in the same order they were given in the input, output

the sum of sailing distances from all other islands on a single line.


输出需要包含N行,表示琪琪想要知道的答案。


样例输入

7 
1  7
7  5
4  5
4  8
6  6
6  1
2  3

样例输出

16 
11 
12 
11 
12 
16 
8 

提示

没有写明提示


题目来源

没有写明来源