#P13600. [NWRRC 2022] Computer Network
[NWRRC 2022] Computer Network
题目描述
Cupa is building a connected network using computers and a single hub.
The computers are numbered from to . Each computer has an outgoing wire that can transfer one bit of data to the other end in milliseconds.
The hub has ports into which the computer's wires can be connected, and each computer has a single port.
Cupa requires each computer's wire to be connected to some port~--- either in the hub or in another computer. It should also be possible to send data to the hub from every computer, either directly or via other computers.
The network latency for each computer is defined as the time it takes to send one bit of data from computer to the hub. We will assume that it takes no time for intermediate computers to redirect received data to their own outgoing wires.
After the network is built, Cupa will calculate the network latency for each computer . He wants the total network latency over all computers, i.e. , to be as small as possible.
Help Cupa to build the network in a way that minimizes the total network latency.
输入格式
The first line contains two integers and --- the number of computers and the number of ports in the hub ().
The second line contains integers --- the list of data transfer times through each computer's wire ().
输出格式
Print a single integer --- the minimum possible total network latency.
3 2
20 30 10
70
5 1
10 10 10 10 10
150
5 2
10 10 10 10 10
90
6 3
5 6 2 3 1 4
27
提示
In the first example test, Cupa should connect computers and to the hub, and connect computer to computer . In this case, , , and . The answer is .
In the second example test, the computers should be connected in a chain leading to the hub in arbitrary order. The total network latency is .