SGU104 Little shop of flowers (DP)
Posted 松子茶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SGU104 Little shop of flowers (DP)相关的知识,希望对你有一定的参考价值。
104. Little shop of flowers time limit per test: 0.25 sec. PROBLEM You want to arrange the window of your flower shop in a most pleasant way. You have F bunches of flowers, each being of a different kind, and at least as many vases ordered in a row. The vases are glued onto the shelf and are numbered consecutively 1 through V, where V is the number of vases, from left to right so that the vase 1 is the leftmost, and the vase V is the rightmost vase. The bunches are moveable and are uniquely identified by integers between 1 and F. These id-numbers have a significance: They determine the required order of appearance of the flower bunches in the row of vases so that the bunch i must be in a vase to the left of the vase containing bunch j whenever i < j. Suppose, for example, you have bunch of azaleas (id-number=1), a bunch of begonias (id-number=2) and a bunch of carnations (id-number=3). Now, all the bunches must be put into the vases keeping their id-numbers in order. The bunch of azaleas must be in a vase to the left of begonias, and the bunch of begonias must be in a vase to the left of carnations. If there are more vases than bunches of flowers then the excess will be left empty. A vase can hold only one bunch of flowers. Each vase has a distinct characteristic (just like flowers do). Hence, putting a bunch of flowers in a vase results in a certain aesthetic value, expressed by an integer. The aesthetic values are presented in a table as shown below. Leaving a vase empty has an aesthetic value of 0.
According to the table, azaleas, for example, would look great in vase 2, but they would look awful in vase 4. To achieve the most pleasant effect you have to maximize the sum of aesthetic values for the arrangement while keeping the required ordering of the flowers. If more than one arrangement has the maximal sum value, any one of them will be acceptable. You have to produce exactly one arrangement. ASSUMPTIONS
Input
Output
Sample Input 3 5 7 23 -5 -24 16 5 21 -4 10 23 -21 5 -4 -20 20 Sample Output 53 2 4 5 |
题目链接:http://acm.sgu.ru/problem.php?contest=0&problem=104
vector<int>ans;
void solve(int n,int m)
if(n == 0)return;
if(pre[n][m] == 0)
solve(n-1,m-1);
ans.push_back(m);
else if(pre[n][m] == 1) solve(n,m-1);
int main()
int n,m;
while(scanf("%d%d",&n,&m) == 2)
for(int i = 1;i <= n;i++)
for(int j = 1; j <= m;j++)
scanf("%d",&a[i][j]);
for(int i = 0;i <= n;i++)
for(int j = 0;j <= m;j++)
dp[i][j] = -INF;
for(int i = 0;i <= m;i++)
dp[0][i] = 0;
for(int i = 1;i <= n;i++)
for(int j = 1;j <= m;j++)
int t1 = dp[i-1][j-1] + a[i][j];
int t2 = dp[i][j-1];
if(t1 >= t2)
dp[i][j] = t1;
pre[i][j] = 0;
else
dp[i][j] = t2;
pre[i][j] = 1 ;
printf("%d\\n",dp[n][m]);
ans.clear();
solve(n,m);
for(int i = 0;i < n;i++)
printf("%d",ans[i]);
if(i < n-1)printf(" ");
else printf("\\n");
return 0;
以上是关于SGU104 Little shop of flowers (DP)的主要内容,如果未能解决你的问题,请参考以下文章
SGU 104 Little Shop of Flowers (DP&打印路径)
POJ 题目1157 LITTLE SHOP OF FLOWERS(DP)
POJ 1157 - LITTLE SHOP OF FLOWERS
POJ1157 LITTLE SHOP OF FLOWERS DP