# UVA - 12563

UVA - 12563

(If you smiled when you see the title, this problem is for you _)
For those who don’t know KTV, see: http://en.wikipedia.org/wiki/Karaoke_box
There is one very popular song called Jin Ge Jin Qu(). It is a mix of 37 songs, and is extremely
long (11 minutes and 18 seconds) — I know that there are Jin Ge Jin Qu II and III, and some other
unofficial versions. But in this problem please forget about them.
Why is it popular? Suppose you have only 15 seconds left (until your time is up), then you should
select another song as soon as possible, because the KTV will not crudely stop a song before it ends
(people will get frustrated if it does so!). If you select a 2-minute song, you actually get 105 extra
seconds! ....and if you select Jin Ge Jin Qu, you’ll get 663 extra seconds!!!
Now that you still have some time, but you’d like to make a plan now. You should stick to the
following rules:
• Don’t sing a song more than once (including Jin Ge Jin Qu).
• For each song of length t, either sing it for exactly t seconds, or don’t sing it at all.
• When a song is finished, always immediately start a new song.
Your goal is simple: sing as many songs as possible, and leave KTV as late as possible (since we
have rule 3, this also maximizes the total lengths of all songs we sing) when there are ties.

Input

The first line contains the number of test cases T (T ≤ 100). Each test case begins with two positive
integers n, t (1 ≤ n ≤ 50, 1 ≤ t ≤ 109
), the number of candidate songs (BESIDES Jin Ge Jin Qu)
and the time left (in seconds). The next line contains n positive integers, the lengths of each song, in
seconds. Each length will be less than 3 minutes — I know that most songs are longer than 3 minutes.
But don’t forget that we could manually “cut” the song after we feel satisfied, before the song ends.
So here “length” actually means “length of the part that we want to sing”.
It is guaranteed that the sum of lengths of all songs (including Jin Ge Jin Qu) will be strictly larger
than t.

Output

For each test case, print the maximum number of songs (including Jin Ge Jin Qu), and the total lengths
of songs that you’ll sing.
Explanation:
In the first example, the best we can do is to sing the third song (80 seconds), then Jin Ge Jin Qu
for another 678 seconds.
In the second example, we sing the first two (30+69=99 seconds). Then we still have one second
left, so we can sing Jin Ge Jin Qu for extra 678 seconds. However, if we sing the first and third song
instead (30+70=100 seconds), the time is already up (since we only have 100 seconds in total), so we
can’t sing Jin Ge Jin Qu anymore!

题意

动态规划问题, n,t n是歌曲的数量,t是你有的总时间,在这里就可以看出来是一个01背包问题,需要输出最多可以唱的歌曲数量,在保证数量下输出最长可以唱多少时间,动态转移方程就需要写两个,以(t-1)为背包容量,放入歌曲数量,在歌曲数量改变的前提之下改变当前背包下的歌曲时间。最后将最大歌曲时间加上678 就是最后的答案。

#include<bits/stdc++.h>
using namespace std;
int num[55];
int dp[36005];
int dp2[36005];
int main(int argc, char const *argv[])
{
    int T;
    cin >> T;
    int ans = 1;
    while(T--)
    {
        int MAX = 0;
        memset(dp, 0, sizeof(dp));
        memset(dp2, 0, sizeof(dp2));
        int n, t;
        cin >> n >> t;

        for(int i = 0; i < n ; i++)
        {
            cin >> num[i];
        }
        for (int i = 0; i < n; ++i)
        {
            for(int j = t - 1; j >= num[i]; j--)
            {
                if(dp[j-num[i]] + 1 > dp[j])
                {
                    dp[j] = dp[j-num[i]] + 1;
                    dp2[j] = dp2[j-num[i]]+num[i];
                }
                else if(dp[j-num[i]] + 1 == dp[j])
                {
                    dp2[j] = max(dp2[j], dp2[j - num[i]] + num[i]);    
                }
            }
        }

        printf("Case %d: %d %d\n", ans++, dp[t - 1] + 1, dp2[t - 1] + 678 );
    }
    return 0;
}
posted @ 2018-08-06 10:50  cifiyoo  阅读(85)  评论(0编辑  收藏  举报