CF427E.Police Patrol

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Imagine that your city is an infinite 2D plane with Cartesian coordinate system. The only crime-affected road of your city is the xx -axis. Currently, there are nn criminals along the road. No police station has been built on this road yet, so the mayor wants to build one.

As you are going to be in charge of this new police station, the mayor has asked you to choose a suitable position (some integer point) for building it. You should choose the best position for the police station, so that you could minimize the total time of your criminal catching mission. Your mission of catching the criminals will operate only from this station.

The new station will have only one patrol car. You will go to the criminals by this car, carry them on the car, bring them back to the police station and put them in prison. The patrol car can carry at most mm criminals at a time. Note that, the criminals don't know about your mission. So, they will stay where they are instead of running away.

Your task is to find the position for the police station, so that total distance you need to cover to catch all the criminals will be minimum possible. Note that, you also can built the police station on the positions where one or more criminals already exist. In such a case all these criminals are arrested instantly.

输入格式

The first line of the input will have two integers n (1<=n<=106)n (1<=n<=10^{6}) and m (1<=m<=106)m (1<=m<=10^{6}) separated by spaces. The next line will contain nn integers separated by spaces. The ithi^{th} integer is the position of the ithi^{th} criminal on the xx -axis. Absolute value of positions will not exceed 10910^{9} . If a criminal has position xx , he/she is located in the point (x,0)(x,0) of the plane.

The positions of the criminals will be given in non-decreasing order. Note, that there can be more than one criminal standing at some point of the plane.

Note: since the size of the input/output could be very large, don't use slow input/output techniques in your language. For example, do not use input/output streams (cin, cout) in C++.

输出格式

Print a single integer, that means the minimum possible distance you need to cover to catch all the criminals.

输入输出样例

  • 输入#1

    3 6
    1 2 3
    

    输出#1

    4
    
  • 输入#2

    5 5
    -7 -6 -3 -1 1
    

    输出#2

    16
    
  • 输入#3

    1 369
    0
    

    输出#3

    0
    
  • 输入#4

    11 2
    -375 -108 1336 1453 1598 1892 2804 3732 4291 4588 4822
    

    输出#4

    18716
    
首页