CodeForces

来源:互联网 发布:超星尔雅网络课程挂机 编辑:程序博客网 时间:2024/06/08 09:26
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 cincout streams or the %I64d specifier.

Output

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

Examples
input
BBBSSC6 4 11 2 34
output
2
input
BBC1 10 11 10 121
output
7
input
BSC1 1 11 1 31000000000000
output
200000000001

#include <set>#include <map>#include <stack>#include <cmath>#include <queue>#include <cstdio>#include <bitset>#include <string>#include <vector>#include <iomanip>#include <cstring>#include <iostream>#include <algorithm>#include <functional>#define N 10010#define inf 2000000000000using namespace std;int main(){        string a;        cin>>a;        long long nb,ns,nc;        cin>>nb>>ns>>nc;        long long pb,ps,pc;        cin>>pb>>ps>>pc;        long long money;        cin>>money;        long long b=0,s=0,c=0;        for(int i=0;i<a.length();i++)        {                if(a[i]=='B')                {                        b++;                }                else if(a[i]=='S')                {                        s++;                }                else if(a[i]=='C')                {                        c++;                }        }        long long left=0,right=inf,mid;        while(left<right)        {                mid=(left+right)/2;                long long need=max((long long)0,(mid*b-nb)*pb)+max((long long)0,(mid*s-ns)*ps)+max((long long)0,(mid*c-nc)*pc);                if(money>=need)                {                        left=mid+1;                }                else                {                        right=mid;                }        }        cout<<left-1<<endl;        return 0;}

0 0