admin管理员组

文章数量:1583033

Hamburgers Codeforces Round #218 (Div. 2)

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 nb, ns, nc (1 ≤ nb, ns, nc ≤ 100) — the number of the pieces of bread, sausage and cheese on Polycarpus’ kitchen. The third line contains three integers pb, ps, pc (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 %I64d specifier.

Output

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

Example

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

题意

昨天因为事情太多,没来得及更新,那就今天补两篇吧。
这题我们可以看到数据特别大,所以该用long long就别漏掉了
而且要用二分,复杂度为O(logn)

题解

#include<iostream>
#include<cstdio>
using namespace std;
#define inf 2000000000000
long long int money;
int b = 0,s = 0,c = 0;
int nb,ns,nc;
int pb,ps,pc;
int jud(long long int mid,long long int &m){
  long long int bb = (mid*b) - nb;
  long long int ss = (mid*s) - ns;
  long long int cc = (mid*c) - nc;
  if(bb < 0) bb = 0;
  if(ss < 0) ss = 0;
  if(cc < 0) cc = 0;
  m = (bb)*pb + (ss)*ps + (cc)*pc;
  if(m > money)
    return 1;
  else
    return 0;
}
int main()
{
  char x;
  while(scanf("%c",&x) && x != '\n'){
    switch(x){
      case 'B': b++;break;
      case 'S': s++;break;
      case 'C': c++;break;
    }
  }
  cin >> nb >> ns >> nc;
  cin >> pb >> ps >> pc;
  cin >> money;
  long long int l = 1,r = inf,cnt = -1;
  while(l <= inf && l < r){
    long long int mid = (l + r)/2,m;
    int judge = jud(mid,m);
    if(judge == 0){
      cnt = cnt > m?cnt : m;
      l = mid + 1;
    }else{
      r = mid;
    }
  }
  cout << l - 1 << endl;
  return 0;
}

本文标签: Hamburgerscodeforces