码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1260: Tickets

时间:2018-07-17 14:14:48      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:numbers   nes   play   integer   can   repr   iat   输入   app   

2
2
20 25
40
1
8

08:00:40 am

08:00:08 am

分析:

经典DP题目。状态转移方程:dp[i]=min(dp[i-1]+a[i],dp[i-2]+b[i])

技术分享图片
#include <stdio.h>
#include <string.h>
int min(int a,int b){
    return a>b?b:a;
}
int a[2005],b[2005],dp[2005];
int main(int argc, char *argv[]) {
    int t,temp,h;
    scanf("%d",&t);
    while(t--){
        memset(a,0,sizeof(a));
        memset(b,0,sizeof(b));
        memset(dp,0,sizeof(dp));
        int n;
        scanf("%d",&n);
        for(int i=1;i<=n;++i)scanf("%d",&a[i]);
        for(int i=2;i<=n;++i)scanf("%d",&b[i]);
        dp[1]=a[1];
        dp[2]=min(a[1]+a[2],b[2]);
        for(int i=3;i<=n;++i)dp[i]=min(dp[i-1]+a[i],dp[i-2]+b[i]);
        temp=dp[n];
        h=8+temp/3600;
        printf("%02d:%02d:%02d %cm\n",h>12?h-12:h,temp%3600/60,temp%60,h>12?p:a);
    }
    return 0;
}
View Code

 

HDU 1260: Tickets

标签:numbers   nes   play   integer   can   repr   iat   输入   app   

原文地址:https://www.cnblogs.com/Rhythm-/p/9322676.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!