洛谷 P3092 [USACO13NOV]没有找零No Change

题目描述

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;

 1 /*Slager_Z*/
 2 #include<bits/stdc++.h>
 3 using namespace std;
 4 #define man 100010
 5 /*common*/
 6 int k,n,a[man],f[1<<16];//a[]:表示当前这个硬币的价值;f[]:在当前状态下可以买到的物品的最大数量;
 7 int sum[man],maxn=0,ans=-1;//因为是按照一定顺序买物品,所以直接记录前缀和;
 8 
 9 inline int find_max(int l,int r,int x)//二分求位置,可以用upper_bound直接计算,找出从前一个状态开始,用第想x枚硬币可以买的物品的最大数量
10 {    int ans=l,mid,pre=l;
11     while(l<=r)
12     {    mid=(l+r)>>1;
13         if(sum[mid]-sum[pre]<=a[x]) ans=mid,l=mid+1;
14         else r=mid-1;
15         }
16     return ans;
17     }
18 
19 inline int calc_surplus(int sta)//计算当前状态下的剩余的没用的钱
20 {    int ans=0;
21     for(int i=1;i<=k;i++)
22     {    if((sta&(1<<(i-1)))==0) ans+=a[i];
23         }
24     return ans;
25     }
26     
27 int main()
28 {    scanf("%d%d",&k,&n);
29     for(int i=1;i<=k;i++)
30         scanf("%d",&a[i]);
31     for(int i=1,x;i<=n;i++)
32     {    scanf("%d",&x);
33         sum[i]=sum[i-1]+x;//前缀和
34         }
35     f[0]=0;
36     for(int sta=1;sta<(1<<k);sta++)//枚举使用硬币的状态001,010,011...110,111;
37     {    maxn=0;
38         for(int i=1;i<=k;i++)
39         {    if(sta&(1<<(i-1)))//枚举当前的硬币i是否使用
40             {    int tmp=f[sta-(1<<(i-1))];//用状态sta-(1<<(i-1))可以买的物品的最多的数量
41                 maxn=max(maxn,find_max(tmp,n,i));//当前状态下最多可以买的物品的数量
42                 }
43             }
44         f[sta]=maxn;
45         if(maxn==n) ans=max(ans,calc_surplus(sta));//如果使用当前硬币就可以完成任务,就计算剩下的钱的总和
46         }
47     printf("%d
",ans);
48     return 0;
49     }
原文地址:https://www.cnblogs.com/Slager-Z/p/7680147.html