Problem AA
Postal Delivery
The postal service is interested in cutting costs as an
alternative to raising the postage rates. One way to do this is
by minimizing the distance traveled when delivering mail from
the post office to all the required locations and returning to
the post office. It may be that all the mail to be delivered
does not fit on the mail truck at once, in which case the
distance traveled by the truck must include travel back to the
post office to reload. For simplicity, we assume a one
dimensional world with the post office at the origin, and
delivery locations each identified by a single coordinate. As
an example, suppose a postal truck can carry up to
Deliver the
Input
The first line contains two integers,
Output
Output the minimum total travel distance needed to deliver all the letters and return to the post office.
Sample Input 1 | Sample Output 1 |
---|---|
3 100 -10 50 10 175 25 20 |
90 |
Sample Input 2 | Sample Output 2 |
---|---|
5 3 -1002 800 -1001 800 -1000 800 -999 800 -998 800 |
2668000 |