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

uva 12356 - Army Buddies

时间:2014-07-29 14:38:18      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:des   style   http   os   io   for   art   代码   



Description

bubuko.com,布布扣
???

Problem J

Jin Ge Jin Qu [h]ao

(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(?Š2?-Œé‡‘?›2). It is a mix of 37 songs, and is extremely long (11 minutes and 18 seconds)[1].

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[2]. 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.

Sample Input

2
3 100
60 70 80
3 100
30 69 70

Output for the Sample Input

Case 1: 2 758
Case 2: 3 777

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!

Bonus

Be sure to test your program with the data provided in our gift package.

Notes

[1] 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.

[2] 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".


Rujia Liu‘s Present 6: Happy 30th Birthday to Myself
Special thanks: Md. Mahbubul Hasan, Feng Chen



题意:有一首劲歌金曲很长,最后要唱,在之前:给出最后剩t秒,n首歌,求最大能唱多少首,然后输出最长长度。
思路:01背包变形,前面的很好求,后面处理看代码。
AC代码:
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <stdlib.h>

using namespace std;

int w[55];

int dp[10000];
int mxt[105],mxl[105];
void solve(int ca,int n,int W){
    memset(dp,-1,sizeof(dp));
    dp[0]=0;
    for(int i=0;i<n;i++){
        for(int j=W;j>=w[i];j--){
            if(~dp[j-w[i]])
                dp[j]=max(dp[j],dp[j-w[i]]+1);
        }
    }
    mxt[ca]=0;
    for(int j=W;j>=0;j--){
        if(dp[j]>mxt[ca]) {
            mxt[ca]=dp[j];
            mxl[ca]=j;
        }
    }
    if(mxt[ca]==0) mxl[ca]==0;
}

int main(){
    int T;
    scanf("%d",&T);
    for(int k=1;k<=T;k++){
        int n,t;
        scanf("%d%d",&n,&t);
        for(int i=0;i<n;i++){
            scanf("%d",&w[i]);
        }
        solve(k,n,t-1);
        printf("Case %d: %d %d\n",k,mxt[k]+1,mxl[k]+678);
    }
}

    

uva 12356 - Army Buddies,布布扣,bubuko.com

uva 12356 - Army Buddies

标签:des   style   http   os   io   for   art   代码   

原文地址:http://blog.csdn.net/kimi_r_17/article/details/38236259

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