Codeforces Round #218 (Div. 2) C. 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 andpc 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 cincoutstreams or the %I64d specifier.

Output

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

Sample test(s)
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

二分查找:
(1) 二分 做汉堡包的个数 -〉满足单调性
(2) judge函数满足贪心选择
#include <iostream>
#include <string>
#include <string.h>
#include <map>
#include <stdio.h>
#include <algorithm>
#include <queue>
#include <vector>
#include <math.h>
#include <set>
#define Max(a,b) ((a)>(b)?(a):(b))
#define Min(a,b) ((a)<(b)?(a):(b))
using namespace std ;
typedef long long LL ;
LL oneprice ;
LL b ,s ,c ,pb ,ps ,pc ,strb ,strs ,strc ,all_money ;
int judge(LL n){
    LL sum = n*oneprice ;
    LL use_s = n*strs ;
    LL use_c = n*strc ;
    LL use_b = n*strb ;
    sum -= pb*Min(b,use_b) ;
    sum -= ps*Min(s,use_s) ;
    sum -= pc*Min(c,use_c) ;
    return all_money >= sum ;
}

LL calc(){
   LL L ,R ,mid , ans = 0;
   L = 0 ;
   R = all_money/oneprice + 108 ;
   while(L <= R){
       mid = (L + R) >> 1 ;
       if(judge(mid)){
           ans = mid ;
           L = mid + 1 ;
       }
       else
           R = mid - 1 ;
   }
   return ans ;
}
int main(){
    string str ;
    int i  ;
    while(cin>>str){
         cin>>b>>s>>c>>pb>>ps>>pc ;
         cin>>all_money ;
         strb = strc = strs = 0 ;
         for(i = 0 ; i < str.length() ; i++){
            if(str[i] == 'B')
               strb++ ;
            else if(str[i] == 'S')
               strs++ ;
            else
               strc++ ;
         }
         oneprice = strb*pb + strc*pc + strs*ps ;
         cout<<calc()<<endl ;
    }
    return 0 ;
}
原文地址:https://www.cnblogs.com/liyangtianmen/p/3464287.html