CF522B.Photo to Remember

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

One day nn friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together.

Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed friend occupies a rectangle of pixels: the ii -th of them occupies the rectangle of width wiw_{i} pixels and height hih_{i} pixels. On the group photo everybody stands in a line, thus the minimum pixel size of the photo including all the photographed friends, is W×HW×H , where WW is the total sum of all widths and HH is the maximum height of all the photographed friends.

As is usually the case, the friends made nn photos — the jj -th ( 1<=j<=n1<=j<=n ) photo had everybody except for the jj -th friend as he was the photographer.

Print the minimum size of each made photo in pixels.

输入格式

The first line contains integer nn ( 2<=n<=2000002<=n<=200000 ) — the number of friends.

Then nn lines follow: the ii -th line contains information about the ii -th friend. The line contains a pair of integers wi,hiw_{i},h_{i} ( 1<=wi<=10,1<=hi<=10001<=w_{i}<=10,1<=h_{i}<=1000 ) — the width and height in pixels of the corresponding rectangle.

输出格式

Print nn space-separated numbers b1,b2,...,bnb_{1},b_{2},...,b_{n} , where bib_{i} — the total number of pixels on the minimum photo containing all friends expect for the ii -th one.

输入输出样例

  • 输入#1

    3
    1 10
    5 5
    10 1
    

    输出#1

    75 110 60 
  • 输入#2

    3
    2 1
    1 2
    2 1
    

    输出#2

    6 4 6 
首页