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个硬币,要买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 #include<iostream>
2 #include<cstring>
3 #include<cstdio>
4 #define N (100000+10)
5 using namespace std;
6
7 int pay[20][N],a[N],c[N],num[N],f[20][N];
8 int n,m;
9
10 int main()
11 {
12 scanf("%d%d",&n,&m);
13 for (int i=1; i<=n; ++i)
14 scanf("%d",&a[i]);
15 for (int i=1; i<=m; ++i)
16 scanf("%d",&c[i]);
17 for (int i=1; i<=(1<<n)-1; ++i)
18 {
19 int x=i,cnt=0;
20 while (x){if (x&1) cnt++; x>>=1;}
21 num[i]=cnt;
22 }
23
24
25 int p=0;
26 for (int i=1; i<=n; ++i)
27 {
28 int sum=0,l=1;
29 for (int j=1; j<=m; ++j)
30 {
31 sum-=c[j-1];
32 while (sum+c[l]<=a[i] && l<=m)
33 sum+=c[l++];
34 pay[i][j]=l-1;
35 }
36 }
37
38 for (int i=1; i<=n; ++i)//当前硬币
39 for (int j=0; j<=(1<<n)-1; ++j)//上一个的状态
40 if (num[j]==i-1)
41 for (int k=1; k<=n; ++k)
42 if ((j|(1<<k-1))!=j)
43 f[i][j|(1<<k-1)]=max(f[i][j|(1<<k-1)],pay[k][f[i-1][j]+1]);
44
45 int ans=-1;
46 for (int i=1; i<=n; ++i)
47 for (int j=1; j<=(1<<n)-1; ++j)
48 if (f[i][j]==m)
49 {
50 int sum=0;
51 for (int k=1; k<=n; ++k)
52 if (!(j&(1<<k-1)))
53 sum+=a[k];
54 ans=max(ans,sum);
55 }
56 printf("%d",ans);
57 }