zoukankan      html  css  js  c++  java
  • CF 371C-Hamburgers[二分答案]

    C. Hamburgers
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He writes down the recipe of his favorite "Le Hamburger de Polycarpus" as a string of letters 'B' (bread), 'S' (sausage) и 'C' (cheese). The ingredients in the recipe go from bottom to top, for example, recipe "ВSCBS" represents the hamburger where the ingredients go from bottom to top as bread, sausage, cheese, bread and sausage again.

    Polycarpus has nb pieces of bread, ns pieces of sausage and nc pieces of cheese in the kitchen. Besides, the shop nearby has all three ingredients, the prices are pb rubles for a piece of bread, ps for a piece of sausage and pc for a piece of cheese.

    Polycarpus has r rubles and he is ready to shop on them. What maximum number of hamburgers can he cook? You can assume that Polycarpus cannot break or slice any of the pieces of bread, sausage or cheese. Besides, the shop has an unlimited number of pieces of each ingredient.

    Input

    The first line of the input contains a non-empty string that describes the recipe of "Le Hamburger de Polycarpus". The length of the string doesn't exceed 100, the string contains only letters 'B' (uppercase English B), 'S' (uppercase English S) and 'C' (uppercase English C).

    The second line contains three integers nbnsnc (1 ≤ nb, ns, nc ≤ 100) — the number of the pieces of bread, sausage and cheese on Polycarpus' kitchen. The third line contains three integers pbpspc (1 ≤ pb, ps, pc ≤ 100) — the price of one piece of bread, sausage and cheese in the shop. Finally, the fourth line contains integer r (1 ≤ r ≤ 1012) — the number of rubles Polycarpus has.

    Please, do not write the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64dspecifier.

    Output

    Print the maximum number of hamburgers Polycarpus can make. If he can't make any hamburger, print 0.

    Examples
    input
    BBBSSC
    6 4 1
    1 2 3
    4
    output
    2
    input
    BBC
    1 10 1
    1 10 1
    21
    output
    7
    input
    BSC
    1 1 1
    1 1 3
    1000000000000
    output
    200000000001

    最大值最小,二分答案,判断可行
    //
    //  main.cpp
    //  cf371c
    //
    //  Created by Candy on 9/15/16.
    //  Copyright © 2016 Candy. All rights reserved.
    //
    
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    using namespace std;
    typedef long long ll;
    char s[105];
    ll n[4],p[4],c[4],v,l,r,ans;
    bool check(ll m){
        ll tmp=v;
        for(int i=1;i<=3;i++){
            if(n[i]<m*c[i]){
                tmp-=(m*c[i]-n[i])*p[i];
                if(tmp<0) return false;
            }
        }
        return true;
    }
    int main(int argc, const char * argv[]) {
        scanf("%s",s);
        for(int i=1;i<=3;i++) cin>>n[i];
        for(int i=1;i<=3;i++) cin>>p[i];
        cin>>v;
        
        int len=strlen(s);
        for(int i=0;i<len;i++){
            if(s[i]=='B') c[1]++;
            if(s[i]=='S') c[2]++;
            if(s[i]=='C') c[3]++;
         }
        l=0;r=v+n[1]+n[2]+n[3];
        while(l<r){//cout<<m<<"m 
    ";
            ll m=(l+r+1)/2;
            if(check(m)) l=m,ans=m;
            else r=m-1;
        }
        cout<<ans;
        return 0;
    }
     
  • 相关阅读:
    apache bench(ab)压力测试模拟POSt请求
    使用pabot并发执行robotframework的testSuite
    Python实现简单的HTTP服务器(支持文件上传下载)
    Mac OS启动服务优化高级篇(launchd tuning)
    在MacOS下Python安装lxml报错xmlversion.h not found 报错的解决方案
    模拟恶劣网络环境常用的几种解决方案
    Web缓存基础:术语、HTTP报头和缓存策略
    RTMP直播应用与延时分析
    用Redis作为Mysql数据库的缓存【转】
    缓存雪崩,缓存穿透解决方案
  • 原文地址:https://www.cnblogs.com/candy99/p/5874330.html
Copyright © 2011-2022 走看看