首页 > 其他 > 详细

uva473

时间:2014-11-08 10:24:38      阅读:291      评论:0      收藏:0      [点我收藏+]

 

 Raucous Rockers 

You just inherited the rights to n previously unreleased songs recorded by the popular group Raucous Rockers. You plan to release a set of m compact disks with a selection of these songs. Each disk can hold a maximum of t minutes of music, and a song can not overlap from one disk to another. Since you are a classical music fan and have no way to judge the artistic merits of these songs, you decide on the following criteria for making the selection:

  1. The songs will be recorded on the set of disks in the order of the dates they were written.
  2. The total number of songs included will be maximized.

Input

The input consists of several datasets. The first line of the input indicates the number of datasets, then there is a blank line and the datasets separated by a blank line. Each dataset consists of a line containing the values of nt and m (integer numbers) followed by a line containing a list of the length of n songs,bubuko.com,布布扣 ordered by the date they were written (Each bubuko.com,布布扣 is between 1 and t minutes long, both inclusive, and bubuko.com,布布扣 .)

 

Output

The output for each dataset consists of one integer indicating the number of songs that, following the above selection criteria will fit on m disks. Print a blank line between consecutive datasets.

 

Sample Input

 

2

10 5 3
3, 5, 1, 2, 3, 5, 4, 1, 1, 5

1 1 1
1

 

Sample Output

 

6

1
这题说的是给了 一个序列的的歌曲播放的时间分别是t0---tn-1 然后 有m个磁盘 每个磁盘可以存T分钟的歌曲,不能有一首歌放在两个磁盘或者以上,求m个磁盘所能容下的最多歌曲的个数
dp[i][j][k] 表示 第i首歌放在j的磁盘k位置的最大值 , 当他放在第一个位置时需要特判一下从上一个磁盘的末尾得到,否者对每个磁盘采用01背包,由于数据大采用滚动数组
bubuko.com,布布扣
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string.h>
using namespace std;
const int maxn=105;
int dp[maxn][maxn];
int t[maxn],n,T,m;
int main()
{
    int cas;
    scanf("%d",&cas);
    for(int cc =1 ;cc<=cas; ++cc){
        scanf("%d%d%d",&n,&T,&m);
         memset(dp,0,sizeof(dp));
         for(int i=0; i<n; ++i){
                int d;
              scanf("%d%*c",&d);
              for(int j=m; j>=1; j--)
              for(int k=T; k>=d; --k){
                 dp[j][k]=max(dp[j][k],dp[j-1][T]+1);
                 dp[j][k]=max(dp[j][k],dp[j][k-d]+1);
              }
         }
         if(cc==cas) printf("%d\n",dp[m][T]);
         else printf("%d\n\n",dp[m][T]);
     }
    return 0;
}
View Code

 



uva473

原文:http://www.cnblogs.com/Opaser/p/4082751.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!