博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Luogu3112] [USACO14DEC]后卫马克Guard Mark
阅读量:5304 次
发布时间:2019-06-14

本文共 3059 字,大约阅读时间需要 10 分钟。

题意翻译

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 
#include
#include
#include
#include
using namespace std;#define int long longinline 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 registerint 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\n", ans); return 0;}
 

 

 

转载于:https://www.cnblogs.com/BriMon/p/9549754.html

你可能感兴趣的文章
Reverse complement DNA
查看>>
MySQL客户端执行外部sql文件命令
查看>>
codevs1690 开关灯(线段树)
查看>>
bzoj2730矿场搭建(Tarjan割点)
查看>>
bzoj1483: [HNOI2009]梦幻布丁(vector+启发式合并)
查看>>
《20171030-构建之法:现代软件工程-阅读笔记》
查看>>
sublime3设置快捷键在浏览器打开预览
查看>>
我的git常用命令
查看>>
swift 自学小计
查看>>
取得手机SDcard的大小和可用空间
查看>>
PHP函数ip2long转换IP时数值太大产生负数的解决办法
查看>>
如何让听众对你的演示感兴趣
查看>>
文档系统
查看>>
Spring源码入门——AnnotationBeanNameGenerator解析
查看>>
日志工具 Log4j
查看>>
JSTL中想要实现break类似功能的实现方法!
查看>>
ANDROID_MARS学习笔记_S01_004dpi、dp(dip)及计算
查看>>
PHP-用ThinkPHP和Bootstrap实现用户登录设计
查看>>
学习一下mysql的日期相关函数(转)
查看>>
Daily Report 2012/11/07 陈伯雄(step 8)
查看>>