• BZOJ2021: [Usaco2010 Jan]Cheese Towers


    2021: [Usaco2010 Jan]Cheese Towers

    Time Limit: 4 Sec  Memory Limit: 64 MB
    Submit: 184  Solved: 107
    [Submit][Status]

    Description

    Farmer John wants to save some blocks of his cows' delicious Wisconsin cheese varieties in his cellar for the coming winter. He has room for one tower of cheese in his cellar, and that tower's height can be at most T (1 <= T <= 1,000). The cows have provided him with a virtually unlimited number of blocks of each kind of N (1 <= N <= 100) different types of cheese (conveniently numbered 1..N). He'd like to store (subject to the constraints of height) the most valuable set of blocks he possibly can. The cows will sell the rest to support the orphan calves association. Each block of the i-th type of cheese has some value V_i (1 <= V_i <= 1,000,000) and some height H_i (5 <= H_i <= T), which is always a multiple of 5. Cheese compresses. A block of cheese that has height greater than or equal to K (1 <= K <= T) is considered "large" and will crush any and all of the cheese blocks (even other large ones) located below it in the tower. A crushed block of cheese doesn't lose any value, but its height reduces to just 4/5 of its old height. Because the height of a block of cheese is always a multiple of 5, the height of a crushed block of cheese will always be an integer. A block of cheese is either crushed or not crushed; having multiple large blocks above it does not crush it more. Only tall blocks of cheese crush other blocks; aggregate height of a tower does not affect whether a block is crushed or not. What is the total value of the best cheese tower FJ can construct? Consider, for example, a cheese tower whose maximum height can be 53 to be build from three types of cheese blocks. Large blocks are those that are greater than or equal to 25. Below is a chart of the values and heights of the various cheese blocks he stacks: Type Value Height 1 100 25 2 20 5 3 40 10 FJ constructs the following tower: Type Height Value top -> [1] 25 100 [2] 4 20 <- crushed by [1] above [3] 8 40 <- crushed by [1] above [3] 8 40 <- crushed by [1] above bottom -> [3] 8 40 <- crushed by [1] above The topmost cheese block is so large that the blocks below it are crushed. The total height is: 25 + 4 + 8 + 8 + 8 = 53 The total height does not exceed 53 and thus is 'legal'. The total value is: 100 + 20 + 40 + 40 + 40 = 240. This is the best tower for this particular set of cheese blocks. John要建一个奶酪塔,高度最大为T。他有N块奶酪。第i块高度为Hi(一定是5的倍数),价值为Vi。一块高度>=K的奶酪被称为大奶酪,一个奶酪如果在它上方有大奶酪(多块只算一次),它的高度就会变成原来的4/5.。。 很显然John想让他的奶酪他价值和最大。。 求这个最大值。。

    Input

    第一行分别是 N T K 接下来N行分别是 Vi Hi

    Output

    一行最大值

    Sample Input

    3 53 25
    100 25
    20 5
    40 10



    Sample Output

    240

    HINT

     

    Source

    题解:
    这题比较有意思。
    其实完全两次背包就可以解决,不过还有其他的方法。
    做一次容积为 t*5/4的背包,然后 if(h[i]>=k)ans=max(ans,v[i]+f[(t-h[i])*5/4])
    好写不容易出错。orz lyd。
    代码:
     1 #include<iostream>
     2 #include<cstdio>
     3 using namespace std;
     4 int a[110],b[110],f[2000],n,t,k,m,i,j,ans;
     5 int main()
     6 {
     7     cin>>n>>t>>k;
     8     m=t*5/4;
     9     for(i=1;i<=n;i++) scanf("%d%d",&a[i],&b[i]);
    10     for(i=1;i<=n;i++)
    11         for(j=0;j<=m-b[i];j++)
    12             f[j+b[i]]=max(f[j+b[i]],f[j]+a[i]);
    13     for(i=1;i<=m;i++) f[i]=max(f[i],f[i-1]);
    14     ans=f[t];
    15     for(i=1;i<=n;i++)
    16         if(b[i]>=k) ans=max(ans,a[i]+f[(t-b[i])*5/4]);
    17     cout<<ans<<endl;
    18     return 0;
    19 }
    View Code
  • 相关阅读:
    java处理高并发高负载类网站的优化方法
    谈谈Memcached与Redis
    php中const与define的使用区别 详解
    ecshop添加模板与库文件
    ECShop 2.5.1 的结构图及各文件相应功能介绍
    Uva10972(RevolC FaeLoN)
    交叉染色法判断二分图
    边双联通问题求解(构造边双连通图)POJ3352(Road Construction)
    POI1999(仓库管理员)
    ZOJ1311(Network)
  • 原文地址:https://www.cnblogs.com/zyfzyf/p/4003648.html
Copyright © 2020-2023  润新知