USACO3.4 Raucous Rockers

Raucous Rockers
Raucous Rockers

You just inherited the rights to N (1 <= N <= 20) previously unreleased songs recorded by the popular group Raucous Rockers. You plan to release a set of M (1 <= M <= 20) compact disks with a selection of these songs. Each disk can hold a maximum of T (1 <= T <= 20) minutes of music, and a song can not overlap from one disk to another.

你刚刚获得了流行乐队Raucous Rockers录制的N(1 <= N <= 20)首未发行歌曲的版权。您计划发布一组M(1 <= M <= 20)张包含这些歌曲的 CD。每张 CD 可以保存最多T(1 <= T <= 20)分钟的音乐,并且一首歌曲不能分段保存。

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:

  • The songs on the set of disks must appear in the order of the dates that they were written.
  • The total number of songs included will be maximized.

由于你是古典音乐迷,无法判断这些歌曲的艺术价值,你决定根据以下标准进行选择:

  • CD 上的歌曲必须按照这些歌曲的完成时间依次出现(从较早到较晚)。
  • 最大化包含的歌曲总数。

PROGRAM NAME: rockers

INPUT FORMAT 输入格式

Line 1: Three Integers: N, T, and M.

Line 2: N integers that are the lengths of the songs ordered by the date they were written.

第 1 行:三个整数 N,T和M。

第 2 行:N 个整数,表示了每首歌曲的长度(按照完成时间排序)。

SAMPLE INPUT (file rockers.in) 样例输入(文件 rockers.in)

4 5 2
4 3 4 2

OUTPUT FORMAT 输出格式

A single line with an integer that is the number of songs that will fit on M disks.

SAMPLE OUTPUT (file rockers.out) 样例输出(文件 rockers.out)

3

题解

类似背包;上代码:

 1 /*
 2 ID: hanghan1
 3 LANG: C++11
 4 PROB: rockers
 5 */
 6 #define _TASK_ "rockers"
 7 #include <bits/stdc++.h>
 8 using namespace std;
 9 #define N 105
10 int dp[N][N], len[N], f[N];
11 
12 int main() {
13     freopen(_TASK_ ".in", "r", stdin);
14     freopen(_TASK_ ".out", "w", stdout);
15     int n, t, m; scanf("%d%d%d", &n,&t,&m);
16     for (int i=1; i<=n; i++) scanf("%d", &len[i]);
17     for (int i=1; i<=n; i++) {
18         for (int j=m; j>=1; j--) {
19             dp[j][0] = f[j-1];
20             for (int k=t; k>=len[i]; k--) if (dp[j][k] < dp[j][k-len[i]]+1) {
21                 dp[j][k] = dp[j][k-len[i]]+1;
22                 f[j] = max(f[j], dp[j][k]);
23             }
24         }
25     }
26     printf("%d\n", f[m]);
27     return 0;
28 }

转载于:https://www.cnblogs.com/mchmch/p/usaco-3-4-rockers.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值