zoukankan      html  css  js  c++  java
  • B

    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.

    Examples

    Input

    BBBSSC
    6 4 1
    1 2 3
    4

    Output

    2

    Input

    BBC
    1 10 1
    1 10 1
    21

    Output

    7
    I##nput
    BSC
    1 1 1
    1 1 3
    1000000000000

    Output

    200000000001

    这是第二次做这题了,二分就好了,不知道之前是怎么做的,后面回去找找

    #include<iostream>
    #include<stdio.h>
    #include<stdlib.h>
    #include <iomanip>
    #include<cmath>
    #include<string.h>
    #include<algorithm>
    #define sf scanf
    #define pf printf
    #define pb push_back
    #define mm(x,b) memset((x),(b),sizeof(x))
    #include<vector>
    #include<map>
    #define for(i,a,b) for(int i=a;i<b;i++)
    typedef long long ll;
    typedef long double ld;
    const ll mod=1e12+100;
    using namespace std;
    const double pi=acos(-1.0);
    ll mon;
    int x,y,z,na=0,nb=0,nc=0,a,b,c;
    bool judge(ll oo)
    {
    	ll cost=0;
    	if(a<na*oo)
    	 cost+=(na*oo-a)*x;
    	if(b<nb*oo) 
    	cost+=(nb*oo-b)*y;
    	if(c<nc*oo)
    	 cost+=(nc*oo-c)*z;
    	return cost<=mon;
    }
    
    int main()
    {
    	char ww[105];
    	cin>>ww;
    
    	for( i,0,strlen(ww))
    	{
    		if(ww[i]=='B') na++;
    		if(ww[i]=='S') nb++;
    		if(ww[i]=='C') nc++;
    	}
    	cin>>a>>b>>c>>x>>y>>z;//xyz是价格abc是现有的 
    	cin>>mon;
    	int aa=0;
    	aa=max(aa,a);
    	aa=max(aa,b);
    	aa=max(aa,c);
    	ll right=mon+aa,left=0,mid;
    	while(right-left>1)
    	{
    		mid=(left+right)/2;
    		if(judge(mid))
    		left=mid;
    		else
    		right=mid;
    	}
    	while(judge(left)) 
    	left++;
    	left--;
    	cout<<left;
    	return 0;
    }
    
  • 相关阅读:
    react-redux简单使用
    jQuery——Js与jQuery的相互转换
    移除HTML5 input在type="number"时的上下小箭头
    echarts 5.0 地图
    Vue echarts 设置初始化默认高亮
    echarts 渐变色
    隐藏滚动条css
    echarts 柱状图--圆角
    echarts 气泡图--option
    Vue 圆柱体组件
  • 原文地址:https://www.cnblogs.com/wzl19981116/p/9381396.html
Copyright © 2011-2022 走看看