zoukankan      html  css  js  c++  java
  • [Luogu3112] [USACO14DEC]后卫马克Guard Mark

    题意翻译

    FJ将飞盘抛向身高为H(1 <= H <= 1,000,000,000)的Mark,但是Mark被N(2 <= N <= 20)头牛包围。牛们可以叠成一个牛塔,如果叠好后的高度大于或者等于Mark的高度,那牛们将抢到飞盘。

    每头牛都一个身高,体重和耐力值三个指标。耐力指的是一头牛最大能承受的叠在他上方的牛的重量和。请计算牛们是否能够抢到飞盘。若是可以,请计算牛塔的最大稳定强度,稳定强度是指,在每头牛的耐力都可以承受的前提下,还能够在牛塔最上方添加的最大重量。

    题目描述

    Farmer John and his herd are playing frisbee. Bessie throws thefrisbee down the field, but it's going straight to Mark the field handon the other team! Mark has height H (1 <= H <= 1,000,000,000), butthere are N cows on Bessie's team gathered around Mark (2 <= N <= 20).They can only catch the frisbee if they can stack up to be at least ashigh as Mark. Each of the N cows has a height, weight, and strength.A cow's strength indicates the maximum amount of total weight of thecows that can be stacked above her.

    Given these constraints, Bessie wants to know if it is possible forher team to build a tall enough stack to catch the frisbee, and if so,what is the maximum safety factor of such a stack. The safety factorof a stack is the amount of weight that can be added to the top of thestack without exceeding any cow's strength.

    输入输出格式

    输入格式:

    INPUT: (file guard.in)

    The first line of input contains N and H.

    The next N lines of input each describe a cow, giving its height,weight, and strength. All are positive integers at most 1 billion.

    输出格式:

    OUTPUT: (file guard.out)

    If Bessie's team can build a stack tall enough to catch the frisbee, please output the maximum achievable safety factor for such a stack.

    Otherwise output "Mark is too tall" (without the quotes).

    输入输出样例

    输入样例#1: 复制
    4 10 
    9 4 1 
    3 3 5 
    5 5 10 
    4 4 5 
    输出样例#1: 复制
    2 




    设f[S]表示状态为S的最大稳定强度。
    枚举i放在已选集合的最上方,显然f[s] = max(f[s']-w[i], s[i])。



     
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <bitset>
    #include <algorithm>
    using namespace std;
    #define int long long
    inline int read() {
        int res = 0;char ch=getchar();
        while(!isdigit(ch)) ch=getchar();
        while(isdigit(ch)) res=(res<<3)+(res<<1)+(ch^48), ch=getchar();
        return res;
    }
    #define reg register
    
    int n, H;
    struct date {
        int h, w, s;
    }p[25];
    int tot;
    int f[1<<21], h[1<<21];
    int bin[25];
    int ans = -1;
    
    signed main()
    {
        bin[0] = 1; for(int i=1;i<=20;i++) bin[i] = bin[i-1] << 1;
        n = read(), H = read();
        for (reg int i = 1 ; i <= n ; i ++)
        {
            p[i].h = read(), p[i].w = read(), p[i].s = read();
            tot += p[i].h;
        }
        if (tot < H) return puts("Mark is too tall"), 0;
        memset(f, 0xcf, sizeof f);
        f[0] = 233333333333333333;
        for (reg int S = 1 ; S <= (1 << n) - 1 ; S ++)
            for (reg int j = 1 ; j <= n ; j ++)
                if (S & bin[j-1]) h[S] += p[j].h;
        for (reg int S = 1 ; S <= (1 << n) - 1 ; S ++)
        {
            for (reg int i = 1 ; i <= n ; i ++)
            {
                if (S & bin[i-1]) 
                    f[S] = max(f[S], min(f[S-bin[i-1]] - p[i].w, p[i].s));
            }
            if (h[S] >= H) ans = max(ans, f[S]);
        }
        if (ans == -1) return puts("Mark is too tall"), 0;
        printf("%lld
    ", ans);
        return 0;
    }
    
    
    


  • 相关阅读:
    mongodb性能测试:long时间戳与string格式时间
    .netcore mongodb 分页+模糊查询+多条件查询
    .netcore 图片处理
    ELEMENT-UI 封装el-table 局部刷新row
    vue-upload 封装组件-上传组件
    vue实现v-model父子组件间的双向通信
    cc.AudioSource
    Chrome插件:本地程序实现验证码破解(浏览器与本地进程通信)
    Chrome插件:微信公众号自动登录(chrome.extension)
    Chrome插件:浏览器后台与页面间通信
  • 原文地址:https://www.cnblogs.com/BriMon/p/9549754.html
Copyright © 2011-2022 走看看