ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

【洛谷 3092】没有找零No Change

2019-08-10 16:01:14  阅读:285  来源: 互联网

标签:purchases his 洛谷 No int 找零 12 FJ include


题目描述

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+二分答案 

#include<iostream>
#include<algorithm>
#include<queue>
#include<cmath>
#include<cstring>
#include<cstdlib>
#include<cstdio>
using namespace std;
const int N=100003; 
int tot,n,m,ans=-1;
int a[N];//cost每个物体花费 
int b[20];//b[i]表示2的i-1次方,表示只选第i个硬币的状态 
int c[N];//coin硬币面值 
int s[N];//物体的前缀和 
int f[(1<<16)+5];//f[i]表示在i状态下买的物品数量 
void init(){
    scanf("%d %d",&m,&n); b[1]=1;
    for(int i=2;i<=m;i++)
        b[i]=b[i-1]<<1;
    for(int i=1;i<=m;i++){
        scanf("%d",&c[i]);
        tot+=c[i];
    }
    for(int i=1;i<=n;i++){
        scanf("%d",&a[i]);
        s[i]=s[i-1]+a[i];
    }
}
void work(){
    int op=(1<<m)-1;
    for(int i=0;i<=op;i++){
        for(int j=1;j<=m;j++){
            if(i&b[j]){
                int jjj=f[i^b[j]]; //不选第j个硬币的状态 
                //jjj即是不用第j个硬币可以购买的物品数
                jjj=upper_bound(s+1,s+n+1,s[jjj]+c[j])-s;
                f[i]=max(f[i],jjj-1); //jjj之前的物品都买了 
            }
        }
    }
    for(int i=0;i<=op;i++){
        if(f[i]==n){
            int vc=0;
            for(int j=1;j<=m;j++)
                if(i&b[j]) vc+=c[j];//不为0,说明使用了 
            ans=max(ans,tot-vc);    
        }
    }
    printf("%d\n",ans);
}
int main(){
    freopen("3092.in","r",stdin);
    freopen("3092.out","w",stdout);
    init(); work();
    return 0;
}

 

标签:purchases,his,洛谷,No,int,找零,12,FJ,include
来源: https://www.cnblogs.com/wuhu-JJJ/p/11331874.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有