zoukankan      html  css  js  c++  java
  • [USACO 13NOV]No Change

    Description

    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

    Input

    • 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.

    Output

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

    Sample Input

    3 6
    12
    15
    10
    6
    3
    3
    2
    3
    7

    Sample Output

    12

    HINT

    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.

    题解

    考虑硬币数很少我们将其状压。

    令$f[i]$表示状态为$i$时最多能够付款多少。

    然后枚举没用过的硬币,考虑用二分查找到最右端位置。

     1 //It is made by Awson on 2017.10.29
     2 #include <set>
     3 #include <map>
     4 #include <cmath>
     5 #include <ctime>
     6 #include <stack>
     7 #include <queue>
     8 #include <vector>
     9 #include <string>
    10 #include <cstdio>
    11 #include <cstdlib>
    12 #include <cstring>
    13 #include <iostream>
    14 #include <algorithm>
    15 #define LL long long
    16 #define Min(a, b) ((a) < (b) ? (a) : (b))
    17 #define Max(a, b) ((a) > (b) ? (a) : (b))
    18 #define Abs(x) ((x) < 0 ? (-(x)) : (x))
    19 #define count COUNT
    20 using namespace std;
    21 const int N = 100000;
    22 const int SIZE = 1<<16;
    23 int st[20];
    24 
    25 int k, n;
    26 int ans = -1;
    27 int f[SIZE+5], a[20], c[N+5];
    28 
    29 int dev(int aim, int l) {
    30     int L = l, R = n, ans = l;
    31     while (L <= R) {
    32         int mid = (L+R)>>1;
    33         if (c[mid]-c[l] <= aim) L = mid+1, ans = mid;
    34         else R = mid-1;
    35     }
    36     return ans;
    37 }
    38 int count(int bit) {
    39     int ans = 0;
    40     for (int i = 0; i < k; i++, bit >>= 1) ans += a[i]*(!(bit&1));
    41     return ans;
    42 }
    43 void work() {
    44     st[0] = 1; for (int i = 1; i <= 16; i++) st[i] = st[i-1]<<1;
    45     scanf("%d%d", &k, &n);
    46     for (int i = 0; i < k; i++) scanf("%d", &a[i]);
    47     for (int i = 1; i <= n; i++) scanf("%d", &c[i]), c[i] += c[i-1];
    48     for (int i = 0; i < st[k]; i++)
    49         for (int j = 0; j < k; j++) if (!(i&st[j])) {
    50             int to = dev(a[j], f[i]);
    51             f[i|st[j]] = Max(f[i|st[j]], to);
    52             if (to == n) ans = Max(ans, count(i|st[j]));
    53         }
    54     printf("%d
    ", ans);
    55 }
    56 int main() {
    57     work();
    58     return 0;
    59 }
  • 相关阅读:
    判断表字段是否存在default约束
    在Eclipse mars 4.5.2 中安装spring 插件 spring tool suite
    MySql (mysql-5.6.37) 在Windows的安装及使用
    在CentOS7.2中搭建Tomcat9 并启用http/2 协议
    CentOS 7.2 中 Kafka,Zookeeper的单机部署,伪分布式部署以及真正的分布式部署
    博客歇菜后的总结
    通过WiFi连接手机(device), 出去数据线的烦恼
    Android Studio 使用三星 Note4 真机调试
    在Mac team 工作的那段日子里(一)
    又到年底了,没钱回家咋办?
  • 原文地址:https://www.cnblogs.com/NaVi-Awson/p/7749983.html
Copyright © 2011-2022 走看看