1. 程式人生 > >Codeforces 1090A - Company Merging - [簽到水題][2018-2019 Russia Open High School Programming Contest Problem A]

Codeforces 1090A - Company Merging - [簽到水題][2018-2019 Russia Open High School Programming Contest Problem A]

題目連結:https://codeforces.com/contest/1090/problem/A

A conglomerate consists of n 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.

Input
The first line contains a single integer n — the number of companies in the conglomerate (1≤n≤2⋅10^5). Each of the next n lines describes a company.

A company description start with an integer mi — the number of its employees (1≤mi≤2⋅10^5). Then mi integers follow: the salaries of the employees. All salaries are positive and do not exceed 10^9.

The total number of employees in all companies does not exceed 2⋅10^5.

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

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

 

題解:

要將 $n$ 家公司合併,每次只能合併兩家,而且只有當兩家公司的最高薪資相等時才能合併。而且,一旦提薪,是所有員工同時提薪。

因此,至少所有公司的最高薪資都要提到和最高薪資最大的那家公司一樣才行。這樣一來,很容易就能計算出總高要提薪多少。

 

AC程式碼:

#include<bits/stdc++.h>
using namespace std;
const int maxn=2e5+10;
int n;
struct Com{
    int ct,mx;
}com[maxn];
int main()
{
    scanf("%d",&n);
    int _max=0;
    for(int i=1;i<=n;i++)
    {
        scanf("%d",&com[i].ct);
        com[i].mx=0;
        for(int j=1,x;j<=com[i].ct;j++)
        {
            scanf("%d",&x);
            com[i].mx=max(com[i].mx,x);
        }
        _max=max(_max,com[i].mx);
    }
    long long ans=0;
    for(int i=1;i<=n;i++)
    {
        if(com[i].mx<_max)
            ans+=(long long)com[i].ct * (_max-com[i].mx);
    }
    cout<<ans<<endl;
}