貌似自己一点DP概念都没有啊,这么简单的题目都没有想到啊!!!
F - 大家好,我是题目F
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Appoint description:
Description
Jesus, what a great movie! Thousands of people are rushing to the cinema. However, this is really a tuff time for Joe who sells the film tickets. He is wandering when could he go back home as early as possible.
A good approach, reducing the total time of tickets selling, is let adjacent people buy tickets together. As the restriction of the Ticket Seller Machine, Joe can sell a single ticket or two adjacent tickets at a time.
Since you are the great JESUS, you know exactly how much time needed for every person to buy a single ticket or two tickets for him/her. Could you so kind to tell poor Joe at what time could he go back home as early as possible? If so, I guess Joe would full of appreciation for your help.
A good approach, reducing the total time of tickets selling, is let adjacent people buy tickets together. As the restriction of the Ticket Seller Machine, Joe can sell a single ticket or two adjacent tickets at a time.
Since you are the great JESUS, you know exactly how much time needed for every person to buy a single ticket or two tickets for him/her. Could you so kind to tell poor Joe at what time could he go back home as early as possible? If so, I guess Joe would full of appreciation for your help.
Input
There are N(1<=N<=10) different scenarios, each scenario consists of 3 lines:
1) An integer K(1<=K<=2000) representing the total number of people;
2) K integer numbers(0s<=Si<=25s) representing the time consumed to buy a ticket for each person;
3) (K-1) integer numbers(0s<=Di<=50s) representing the time needed for two adjacent people to buy two tickets together.
1) An integer K(1<=K<=2000) representing the total number of people;
2) K integer numbers(0s<=Si<=25s) representing the time consumed to buy a ticket for each person;
3) (K-1) integer numbers(0s<=Di<=50s) representing the time needed for two adjacent people to buy two tickets together.
Output
For every scenario, please tell Joe at what time could he go back home as early as possible. Every day Joe started his work at 08:00:00 am. The format of time is HH:MM:SS am|pm.
Sample Input
2 2 20 25 40 1 8
Sample Output
08:00:40 am 08:00:08 am
#include <stdio.h>
#include <string.h>
int min1(int a, int b)
{
if(a<b)
return a;
return b;
}
int main()
{
int dp[2500];
int n;
int k, s, f, m;
int ss[2020], dd[2020];
int i, num;
scanf("%d", &n);
while(n--)
{
num = 0;
memset(dp, 0, sizeof(dp));
memset(ss, 0, sizeof(ss));
memset(dd, 0, sizeof(dd));
scanf("%d", &k);
for(i=1; i<=k; i++)
scanf("%d", &ss[i]);
for(i=1; i<k; i++)
scanf("%d", &dd[i]);
dp[1] = ss[1];
dp[0] = 0;
for(i=2; i<=k; i++)
{
dp[i] = min1(dp[i-1]+ss[i], dp[i-2]+dd[i-1]);
}
num = dp[k];
s=8;
f = m = 0;
while(num>=60)
{
num -= 60;
f++;
}
m = num;
while(f>=60)
{
f -= 60;
s++;
}
if(s<=12)
printf("%02d:%02d:%02d am\n", s, f, m);
else
printf("%02d:%02d:%02d pm\n", s, f, m);
}
return 0;
}