POJ 1160 题解

Post Office
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 18835   Accepted: 10158

Description

There is a straight highway with villages alongside the highway. The highway is represented as an integer axis, and the position of each village is identified with a single integer coordinate. There are no two villages in the same position. The distance between two positions is the absolute value of the difference of their integer coordinates. 

Post offices will be built in some, but not necessarily all of the villages. A village and the post office in it have the same position. For building the post offices, their positions should be chosen so that the total sum of all distances between each village and its nearest post office is minimum. 

You are to write a program which, given the positions of the villages and the number of post offices, computes the least possible sum of all distances between each village and its nearest post office. 

Input

Your program is to read from standard input. The first line contains two integers: the first is the number of villages V, 1 <= V <= 300, and the second is the number of post offices P, 1 <= P <= 30, P <= V. The second line contains V integers in increasing order. These V integers are the positions of the villages. For each position X it holds that 1 <= X <= 10000.

Output

The first line contains one integer S, which is the sum of all distances between each village and its nearest post office.

Sample Input

10 5
1 2 3 6 7 9 11 22 44 50

Sample Output

9

Source

 
基本同山区建小学。
 1 #include "cstdio"
 2 #include "cstring"
 3 #include "cstdlib"
 4 #include "iostream"
 5 
 6 using namespace std ;
 7 const int INF = 214748364 ;
 8 const int maxN = 1e3 ;
 9 
10 int d [ maxN ] , f [ maxN ][ maxN ] , cost[ maxN ][ maxN ] ;
11 
12 int gmin ( int x , int y ) { return x > y ? y : x ; }
13 
14 inline int INPUT ( ) {
15         int x = 0 , F = 1 ; char ch = getchar ( ) ;
16         while ( ch < '0' || '9' < ch ) { if ( ch == '-' ) F = -1 ; ch = getchar ( ) ; }
17         while ( '0' <= ch && ch <= '9' ) { x = ( x << 1 ) + ( x << 3 ) + ch - '0' ; ch = getchar ( ) ; }
18         return x * F ;
19 }
20 
21 void calc ( int M ) {
22         for ( int i=1 ;i<=M ; ++i ) {
23                 for ( int j=i+1 ; j<=M ; ++j ){
24                         int Dis = 0 ;
25                         int mid = ( i + j ) >> 1 ;
26                         for ( int k=i ; k<mid ; ++k )Dis += d[mid] - d[k] ;
27                         for ( int k=mid+1 ; k<=j ; ++k )Dis += d[k] - d[mid] ;
28                         cost[ i ][ j ] = Dis ;
29                 }
30         }
31 }
32 
33 void Init_2 ( int N , int M ) {
34         for ( int i=1 ; i<=M ; ++i ) {
35                 for ( int j=1 ; j<=N ; ++j ) {
36                         if ( j==1 ) f[ i ][ j ] = cost[ 1 ][ i ] ;
37                         else f[ i ][ j ] = INF ;
38                 }
39         }
40 }
41 void Init_1 ( int M ) {
42         for ( int i=1 ; i<=M; ++i )
43                 for ( int j=i+1 ; j<=M; ++j )
44                         cost[ i ][ j ] = INF ;
45 }
46 
47 int main ( ) {
48         int M = INPUT ( ) , N = INPUT ( ) ;
49         for ( int i=1 ; i<=M ; ++i )
50                 d[ i ] = INPUT ( ) ;
51         Init_1( M ) ;
52         calc ( M ) ;
53         Init_2 ( N , M ) ;
54         for ( int i=1 ; i<=M ; ++i ) {
55                 for ( int j=2 ; j<=N ; ++j ) {
56                         for ( int k=0 ; k<i ; ++k ){
57                                 f[ i ][ j ] = gmin ( f[ i ][ j ] , f[ k ][ j - 1 ] + cost[ k + 1 ][ i ] ) ;
58                         }
59                 }
60         }
61         printf ( "%d\n" , f[ M ][ N ] ) ;
62         return 0 ;
63 }
View Code

 

2016-10-20  21:01:34

posted @ 2016-10-20 21:02  SHHHS  阅读(406)  评论(0编辑  收藏  举报