题目描述

Farmer John is at the market to purchase supplies for his farm. He has in his pocket K coins (1 <= K <= 16), each with value in the range 1..100,000,000. FJ would like to make a sequence of N purchases (1 <= N <= 100,000), where the ith purchase costs c(i) units of money (1 <= c(i) <= 10,000). As he makes this sequence of purchases, he can periodically stop and pay, with a single coin, for all the purchases made since his last payment (of course, the single coin he uses must be large enough to pay for all of these). Unfortunately, the vendors at the market are completely out of change, so whenever FJ uses a coin that is larger than the amount of money he owes, he sadly receives no changes in return!

Please compute the maximum amount of money FJ can end up with after making his N purchases in sequence. Output -1 if it is impossible for FJ to make all of his purchases.

约翰到商场购物,他的钱包里有K(1 <= K <= 16)个硬币,面值的范围是1..100,000,000。

约翰想按顺序买 N个物品(1 <= N <= 100,000),第i个物品需要花费c(i)块钱,(1 <= c(i) <= 10,000)。

在依次进行的购买N个物品的过程中,约翰可以随时停下来付款,每次付款只用一个硬币,支付购买的内容是从上一次支付后开始到现在的这些所有物品(前提是该硬币足以支付这些物品的费用)。不幸的是,商场的收银机坏了,如果约翰支付的硬币面值大于所需的费用,他不会得到任何找零。

请计算出在购买完N个物品后,约翰最多剩下多少钱。如果无法完成购买,输出-1

输入输出格式

输入格式:

  • Line 1: Two integers, K and N.

  • Lines 2..1+K: Each line contains the amount of money of one of FJ's coins.

  • Lines 2+K..1+N+K: These N lines contain the costs of FJ's intended purchases.

输出格式:

  • Line 1: The maximum amount of money FJ can end up with, or -1 if FJ cannot complete all of his purchases.

输入输出样例

输入样例#1: 复制

3 6
12
15
10
6
3
3
2
3
7
输出样例#1: 复制

12

说明

FJ has 3 coins of values 12, 15, and 10. He must make purchases in sequence of value 6, 3, 3, 2, 3, and 7.

FJ spends his 10-unit coin on the first two purchases, then the 15-unit coin on the remaining purchases. This leaves him with the 12-unit coin.

装压dp,WA了很久,少写了=号,满状态没枚举到

#include<cstdio>
#include<algorithm>
const int maxn = ;
inline int read() {
int x=, f=;
char c=getchar() ;
while(c<''||c>''){ if(c=='-')f=-;c=getchar();};
while(c<=''&&c>='')x=x*+c-'',c=getchar();
return x*f;
}int n,k;
int moe[maxn],thi[maxn*];
int dp[<<maxn];//当前状态能够购买的最多物件数
int main() {
int tot=;
k=read(),n=read();
for(int i=;i<=k;++i) moe[i]=read(),tot+=moe[i];
for(int i=;i<=n;++i) thi[i]=read(),thi[i]+=thi[i-];
int kn=(<<k)-;
//printf("%d\n",tot);
//printf("%d\n",thi[n]);
int ans=-;
for(int i=;i<=kn;++i) {
for(int j=;j<=k;++j) {
if(i&(<<j-)) {
int popo=i^(<<j-);
int l=dp[popo],r=n,tt=-;
while(l<=r) {
int mid=(l+r)>>;
if(thi[mid]-thi[dp[popo]]<=moe[j]) tt=mid,l=mid+;
else r=mid-;
}
dp[i]=std::max(dp[i],tt);
if(dp[i]==n) {
int tmp=;
for(int q=;q<=k;++q) {
if(i&(<<q-))tmp+=moe[q];
}
ans=std::max(ans,tot-tmp);
}
}
}
} printf("%d\n",ans);
return ;
}

最新文章

  1. D​e​p​l​o​y​m​e​n​t​ ​f​a​i​l​u​r​e​ ​o​n​ ​T​o​m​c​a​t​ ​6​.​x​.​ ​C​o​u​l​d​ ​n​o​t​ ​c​o​p​y​ ​a​l​l​ ​r​e​s​o​u​r​c​e​s​ ​t​o
  2. web学习之servlet
  3. ListView的item里面控件文本颜色修改
  4. pod 新格式
  5. easyui 动态列
  6. linux deepin-scrot 截图工具
  7. 【Robot Framework】robot framework 学习以及selenium、appnium、requests实践(一)
  8. JSONKit解析json数据
  9. Java中数字操作
  10. golang与C交互:cgo
  11. C#工具介绍
  12. 浅析MySQL中的Index Condition Pushdown (ICP 索引条件下推)和Multi-Range Read(MRR 索引多范围查找)查询优化
  13. Windows环境下在Oracle VM VirtualBOX下克隆虚拟机镜像
  14. 【Java SE】如何用Java实现插入排序
  15. CentOS7下安装GitLab
  16. Service Worker 离线无法缓存Post请求的问题解决
  17. leetcode-217存在重复元素
  18. jsp 起航 和Servlet通过attribute通信
  19. HTML5在手机端实现视频全屏展示
  20. Ubuntu下安装nfs服务器

热门文章

  1. 读书笔记jvm探秘之二: 对象创建
  2. MySQL之架构与历史(二)
  3. Linux基本命令运行
  4. easyui-combogrid匹配查询
  5. logback mybatis 打印sql语句
  6. 云计算之路-阿里云上:用上了开放缓存服务OCS
  7. 性能测试工具—Jmeter
  8. Leetcode 647.回文子串
  9. POJ2723 Get Luffy Out 【2-sat】
  10. cocoapods的安装使用