CF1090A.Company Merging

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A conglomerate consists of nn companies. To make managing easier, their owners have decided to merge all companies into one. By law, it is only possible to merge two companies, so the owners plan to select two companies, merge them into one, and continue doing so until there is only one company left.

But anti-monopoly service forbids to merge companies if they suspect unfriendly absorption. The criterion they use is the difference in maximum salaries between two companies. Merging is allowed only if the maximum salaries are equal.

To fulfill the anti-monopoly requirements, the owners can change salaries in their companies before merging. But the labor union insists on two conditions: it is only allowed to increase salaries, moreover all the employees in one company must get the same increase.

Sure enough, the owners want to minimize the total increase of all salaries in all companies. Help them find the minimal possible increase that will allow them to merge companies into one.

输入格式

The first line contains a single integer nn — the number of companies in the conglomerate ( 1n21051 \le n \le 2 \cdot 10^5 ). Each of the next nn lines describes a company.

A company description start with an integer mim_i — the number of its employees ( 1mi21051 \le m_i \le 2 \cdot 10^5 ). Then mim_i integers follow: the salaries of the employees. All salaries are positive and do not exceed 10910^9 .

The total number of employees in all companies does not exceed 21052 \cdot 10^5 .

输出格式

Output a single integer — the minimal total increase of all employees that allows to merge all companies.

输入输出样例

  • 输入#1

    3
    2 4 3
    2 2 1
    3 1 1 1
    

    输出#1

    13
    

说明/提示

One of the optimal merging strategies is the following. First increase all salaries in the second company by 22 , and merge the first and the second companies. Now the conglomerate consists of two companies with salaries [4,3,4,3][4, 3, 4, 3] and [1,1,1][1, 1, 1] . To merge them, increase the salaries in the second of those by 33 . The total increase is 2+2+3+3+3=132 + 2 + 3 + 3 + 3 = 13 .

首页