zoukankan      html  css  js  c++  java
  • [USACO10FEB]购买巧克力Chocolate Buying

    题目描述

    Bessie and the herd love chocolate so Farmer John is buying them some.

    The Bovine Chocolate Store features N (1 <= N <= 100,000) kinds of chocolate in essentially unlimited quantities. Each type i of chocolate has price P_i (1 <= P_i <= 10^18) per piece and there are C_i (1 <= C_i <= 10^18) cows that want that type of chocolate.

    Farmer John has a budget of B (1 <= B <= 10^18) that he can spend on chocolates for the cows. What is the maximum number of cows that he can satisfy? All cows only want one type of chocolate, and will be satisfied only by that type.

    Consider an example where FJ has 50 to spend on 5 different types of chocolate. A total of eleven cows have various chocolate preferences:

    Chocolate_Type Per_Chocolate_Cost Cows_preferring_this_type 1 5 3

    2 1 1

    3 10 4

    4 7 2

    5 60 1

    Obviously, FJ can't purchase chocolate type 5, since he doesn't have enough money. Even if it cost only 50, it's a counterproductive purchase since only one cow would be satisfied.

    Looking at the chocolates start at the less expensive ones, he can * purchase 1 chocolate of type #2 for 1 x 1 leaving 50- 1=49, then * purchase 3 chocolate of type #1 for 3 x 5 leaving 49-15=34, then * purchase 2 chocolate of type #4 for 2 x 7 leaving 34-14=20, then * purchase 2 chocolate of type #3 for 2 x 10 leaving 20-20= 0.

    He would thus satisfy 1 + 3 + 2 + 2 = 8 cows.

    贝西和其他奶牛们都喜欢巧克力,所以约翰准备买一些送给她们。奶牛巧克力专卖店里

    有N种巧克力,每种巧克力的数量都是无限多的。每头奶牛只喜欢一种巧克力,调查显示,

    有Ci头奶牛喜欢第i种巧克力,这种巧克力的售价是P。

    约翰手上有B元预算,怎样用这些钱让尽量多的奶牛高兴呢?

    输入输出格式

    输入格式:

    * Line 1: Two space separated integers: N and B

    * Lines 2..N+1: Line i contains two space separated integers defining chocolate type i: P_i and C_i

    输出格式:

    * Line 1: A single integer that is the maximum number of cows that Farmer John can satisfy

    输入输出样例

    输入样例#1: 
    5 50 
    5 3 
    1 1 
    10 4 
    7 2 
    60 1 
    
    输出样例#1: 
    8 
    

     
    分析:
    稍微难一点的贪心,显然按p从小到大排序,然后贪心即可。
     
    CODE:
     1 #include<cmath>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<iostream>
     5 #include<algorithm>
     6 using namespace std;
     7 const int M=100005;
     8 int n;
     9 long long b,ans;
    10 inline long long get(){
    11     char c=getchar();
    12     long long res=0;
    13     while (c<'0'||c>'9') c=getchar();
    14     while (c>='0'&&c<='9'){
    15         res=(res<<3)+(res<<1)+c-'0';
    16         c=getchar();
    17     }
    18     return res;
    19 }
    20 struct node{
    21     long long p,c;
    22 }a[M];
    23 bool cmp(node x,node y){
    24     return x.p<y.p;
    25 }
    26 int main() {
    27     n=get(),b=get();
    28     for (int i=1;i<=n;i++) a[i].p=get(),a[i].c=get();
    29     sort(a+1,a+n+1,cmp);
    30     for (int i=1;i<=n&&b>=a[i].p;i++){
    31         long long j=b/a[i].p;
    32         if (j>=a[i].c) b-=a[i].p*a[i].c,ans+=a[i].c;
    33         else {ans+=j;break;}
    34         //cout<<b<<" "<<ans<<endl;
    35     }
    36     cout<<ans<<endl;
    37     system("pause");
    38     return 0;
    39 }
  • 相关阅读:
    Querying for Event Information
    通过注册表查询 .Net Framework 的版本
    [Batch脚本] if else 的格式
    逆天技能
    财运是靠自己争取的,而财商是可以通过后天学习提高的
    必须冒着可能付出惨痛代价的风险前进,否则你就只能永远做个井底之蛙
    财商低的六种表现
    中国大唐集团公司 主要经营范围
    中国大唐集团公司是2002年12月29日在原国家电力公司部分企事业单位基础上组建而成的特大型发电企业集团
    中国大唐集团公司在役及在建资产分布在全国31个省区市以及境外
  • 原文地址:https://www.cnblogs.com/kanchuang/p/11150298.html
Copyright © 2011-2022 走看看