Company Merging

아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

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 m_im\_i --- the number of its employees (1m_i21051 \le m\_i \le 2 \cdot 10^5). Then m_im\_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.

힌트

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.