HDU1158:Employment Planning(DP)
A project manager wants to determine the number of the workers needed in every month. He does know the minimal number of the workers needed in each month. When he hires or fires a worker, there will be some extra cost. Once a worker is hired, he will get the salary even if he is not working. The manager knows the costs of hiring a worker, firing a worker, and the salary of a worker. Then the manager will confront such a problem: how many workers he will hire or fire each month in order to keep the lowest total cost of the project.
Input
The input may contain several data sets. Each data set contains three lines. First line contains the months of the project planed to use which is no more than 12. The second line contains the cost of hiring a worker, the amount of the salary, the cost of firing a worker. The third line contains several numbers, which represent the minimal number of the workers needed each month. The input is terminated by line containing a single '0'.
Output
The output contains one line. The minimal total cost of the project.
Sample Input
3
4 5 6
10 9 11
0
Sample Output
199
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
int dp[20][100000];
int main()
{
int h,s,f,n,a[20],maxn,i,j,l;
while(~scanf("%d",&n),n)
{
maxn = 0;
scanf("%d%d%d",&h,&s,&f);
for(i = 0; i<n; i++)
{
scanf("%d",&a[i]);
maxn = max(maxn,a[i]);
}
for(l = a[0]; l<=maxn; l++)
dp[0][l] = l*(h+s);
for(i = 1; i<n; i++)
{
for(l = a[i]; l<=maxn; l++)
{
if(l>a[i-1]) dp[i][l] = dp[i-1][a[i-1]]+l*s+(l-a[i-1])*h;
else dp[i][l] = dp[i-1][a[i-1]]+l*s+(a[i-1]-l)*f;
for(j = a[i-1]+1; j<=maxn; j++)
{
if(j>l) dp[i][l] = min(dp[i][l],dp[i-1][j]+l*s+(j-l)*f);
else dp[i][l] = min(dp[i][l],dp[i-1][j]+l*s+(l-j)*h);
}
}
}
int ans = 1<<30;
for(l = a[n-1]; l<=maxn; l++)
ans = min(ans,dp[n-1][l]);
printf("%d
",ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.