Zoj 3469 food delivery

Source: Internet
Author: User
Food delivery

Time limit:2000 msMemory limit:65536kb64bit Io format:% LLD & % LlU

Description

When we are focusing on solving problems, we usually prefer to stay in front of computers rather than go out for lunch. At this time, we may call for food delivery.

Suppose there areNPeople living in a straight street that is just lies on an X-coordinate axis.ITh person's coordinate isXIMeters. And in the street there is a take-out restaurant which has coordinatesXMeters. One day at lunchtime, each person takes an order from the restaurant at the same time. As a worker in the restaurant, you need to start from the restaurant, send food toNPeople, and then come back to the restaurant. Your speed isV-1Meters per minute.

You know thatNPeople have different personal characters; therefore they have different feeling on the time their food arrives. Their feelings are measuredDispleasure Index. At the beginning,Displeasure IndexFor each person is 0. When waiting for the food,ITh person will gainBiDispleasure IndexPer minute.

If one'sDispleasure IndexGoes too high, he will not buy your food any more. So you need to keep the sum of all people'sDispleasure IndexAs low as possible in order to maximize your income. Your task is to find the minimal sumDispleasure Index.

Input

The input contains multiple test cases, separated with a blank line. Each case is started with three IntegersN(1 <=N<= 1000 ),V(V> 0 ),X(X> = 0), thenNLines followed. Each line contains two integersXI(XI> = 0 ),Bi(Bi> = 0), which are described above.

You can safely assume that all numbers in the input and output will be less than 231-1.

Please process to the end-of-file.

Output

For each test case please output a single number, which is the minimal sumDispleasure Index. One test case per line.

Sample Input

5 1 0
1 1
2 2
3 3
4
5 5

Sample output

55

Classic DP model: dp (I, j, 0), DP (I, j, 1), which generally indicates that ~ J and then stop at the left or right side.

 1 #include<set> 2 #include<queue> 3 #include<cstdio> 4 #include<cstdlib> 5 #include<cstring> 6 #include<iostream> 7 #include<algorithm> 8 using namespace std; 9 const int N = 1010;10 #define For(i,n) for(int i=1;i<=n;i++)11 #define Rep(i,l,r) for(int i=l;i<=r;i++)12 #define Down(i,r,l) for(int i=r;i>=l;i--)13 14 struct people{15     int xi,bi;16 }A[N];17 18 int start,n,m,dp[N][N][2],pos,sum[N];19 20 void DP(){21     For(i,n)22       For(j,n) 23         Rep(k,0,1)  dp[i][j][k]=1<<30;24     dp[pos][pos][0]=dp[pos][pos][1]=0;25     Down(i,pos,1)26       Rep(j,pos,n)27           if(i>j){28           int tans=0;29           if(i-1>=1) tans+=sum[i-1];30           if(j+1<=n) tans+=sum[n]-sum[j];31           dp[i][j][0]=min(dp[i][j][0],dp[i+1][j][0]+(A[i+1].xi-A[i].xi)*(tans+A[i].bi));32           dp[i][j][0]=min(dp[i][j][0],dp[i+1][j][1]+(A[j].xi-A[i].xi)*(tans+A[i].bi));33           dp[i][j][1]=min(dp[i][j][1],dp[i][j-1][0]+(A[j].xi-A[i].xi)*(tans+A[j].bi));34           dp[i][j][1]=min(dp[i][j][1],dp[i][j-1][1]+(A[j].xi-A[j-1].xi)*(tans+A[j].bi));35       }36     printf("%d\n",min(dp[1][n][0],dp[1][n][1])*m);37 }38 39 bool cmp(people A,people B){return A.xi<B.xi;}40 41 int main(){42     while(scanf("%d%d%d",&n,&m,&start)!=EOF){43         For(i,n) scanf("%d%d",&A[i].xi,&A[i].bi);44         A[++n].xi=start;A[n].bi=0;45         sort(A+1,A+n+1,cmp);46         For(i,n) sum[i]=sum[i-1]+A[i].bi;47         For(i,n)48             if(A[i].xi==start){49                 pos=i;50                 break;51             }52         DP();53     }54     return 0;55 }

 

Zoj 3469 food delivery

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.