博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 4283 You Are the One(区间DP)题目转换难,状态难,。。。
阅读量:4034 次
发布时间:2019-05-24

本文共 3174 字,大约阅读时间需要 10 分钟。

1、

2、题目大意:

有n个男孩,现在要一个一个的登台,每个男孩都有一个diaosi值,如果他是第k个登台的,他的最终的diaosi值就等于他的diaosi值*(k-1),他前边等待了K-1个人,现在要确定一个登台顺序 ,使得所有男孩的diaosi值最小

3、思路分析

设状态dp[i][j]表示i-j区间内i是第k个登台的

 dp[s][e]=min(dp[s][e],dp[s+1][e]+a[s]*(e-s));//s是最后一个选出来的

            dp[s][e]=min(dp[s][e],dp[s+1][e]+Delay(s,e));//第一个被选出来
            for(int k=s+1;k<=e;k++)
            {
                dp[s][e]=min(dp[s][e],dp[s+1][k]+dp[k+1][e]+a[s]*(k-s)+Delay(k,e)*(k-s+1));
                //最后是k-s+1,k后边的人还要等k
            }

4、题目:

You Are the One

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 1351    Accepted Submission(s): 637

Problem Description
  The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show itself. The show is hold in the Small hall, so it attract a lot of boys and girls. Now there are n boys enrolling in. At the beginning, the n boys stand in a row and go to the stage one by one. However, the director suddenly knows that very boy has a value of diaosi D, if the boy is k-th one go to the stage, the unhappiness of him will be (k-1)*D, because he has to wait for (k-1) people. Luckily, there is a dark room in the Small hall, so the director can put the boy into the dark room temporarily and let the boys behind his go to stage before him. For the dark room is very narrow, the boy who first get into dark room has to leave last. The director wants to change the order of boys by the dark room, so the summary of unhappiness will be least. Can you help him?

 

Input
  The first line contains a single integer T, the number of test cases.  For each case, the first line is n (0 < n <= 100)
  The next n line are n integer D1-Dn means the value of diaosi of boys (0 <= Di <= 100)

 

Output
  For each test case, output the least summary of unhappiness .

 

Sample Input
2  512345554322

 

Sample Output
Case #1: 20Case #2: 24

 

Source

 

Recommend
liuyiding   |   We have carefully selected several similar problems for you: 

 

5、AC代码:

#include
#include
#include
using namespace std;#define N 105#define INF 1<<29int a[N],sum[N];int dp[N][N];//dp[i][j]表示i是第k个被选出来的int Delay(int s,int e){ if(s>e) return 0; return sum[e]-sum[s];}void DP(int n){ for(int i=0;i<=n;i++) { for(int j=0;j<=n;j++) dp[i][j]=INF; } for(int i=0;i<=n;i++) { dp[i][i]=0; } for(int d=1;d<=n;d++) { for(int i=1;i+d-1<=n;i++) { int s=i; int e=i+d-1; //int delay=Delay(s,e); dp[s][e]=min(dp[s][e],dp[s+1][e]+a[s]*(e-s));//s是最后一个选出来的 dp[s][e]=min(dp[s][e],dp[s+1][e]+Delay(s,e));//第一个被选出来 for(int k=s+1;k<=e;k++) { dp[s][e]=min(dp[s][e],dp[s+1][k]+dp[k+1][e]+a[s]*(k-s)+Delay(k,e)*(k-s+1)); //最后是k-s+1,k后边的人还要等k } } }}int main(){ int t,n,cas=0; scanf("%d",&t); while(t--) { cas++; scanf("%d",&n); sum[0]=0; for(int i=1;i<=n;i++) { scanf("%d",&a[i]); sum[i]=sum[i-1]+a[i]; } DP(n); printf("Case #%d: %d\n",cas,dp[1][n]); } return 0;}/*2051 2 3 4 555 4 3 2 261 1 1 1 1 177 7 7 7 7 7 7*/

 

转载地址:http://awcdi.baihongyu.com/

你可能感兴趣的文章
Flex 中的元数据标签
查看>>
flex4 中创建自定义弹出窗口
查看>>
01Java基础语法-11. 数据类型之间的转换
查看>>
01Java基础语法-13. if分支语句的灵活使用
查看>>
01Java基础语法-15.for循环结构
查看>>
01Java基础语法-16. while循环结构
查看>>
01Java基础语法-17. do..while循环结构
查看>>
01Java基础语法-18. 各种循环语句的区别和应用场景
查看>>
01Java基础语法-19. 循环跳转控制语句
查看>>
Django框架全面讲解 -- Form
查看>>
socket,accept函数解析
查看>>
今日互联网关注(写在清明节后):每天都有值得关注的大变化
查看>>
”舍得“大法:把自己的优点当缺点倒出去
查看>>
[今日关注]鼓吹“互联网泡沫,到底为了什么”
查看>>
[互联网学习]如何提高网站的GooglePR值
查看>>
[关注大学生]求职不可不知——怎样的大学生不受欢迎
查看>>
[关注大学生]读“贫困大学生的自白”
查看>>
[互联网关注]李开复教大学生回答如何学好编程
查看>>
[关注大学生]李开复给中国计算机系大学生的7点建议
查看>>
[关注大学生]大学毕业生择业:是当"鸡头"还是"凤尾"?
查看>>