博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Hamburgers 假定解是否可行
阅读量:5891 次
发布时间:2019-06-19

本文共 3603 字,大约阅读时间需要 12 分钟。

Hamburgers
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit 

Description

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.

Sample Input

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 #include 
2 #include
3 4 const int inf=0x3f3f3f3f; 5 const long long INF=1e14+7; 6 char a[105]; 7 long long b,s,c,nb,ns,nc,pb,ps,pc,r; 8 9 bool C(long long x)10 {11 long long rb,rs,rc;12 rb=(x*b-nb)>=0?(x*b-nb):0,rs=(x*s-ns)>=0?(x*s-ns):0,rc=(x*c-nc)>=0?(x*c-nc):0;13 if((rb*pb+rs*ps+rc*pc)<=r)14 return true;15 else16 return false;17 }18 19 int main()20 {21 int i,j,k;22 while(scanf("%s",a)!=EOF)23 {24 b=0,s=0,c=0;25 for(i=0;a[i]!='\0';i++)26 {27 if(a[i]=='B')28 b++;29 else if(a[i]=='S')30 s++;31 else if(a[i]=='C')32 c++;33 }34 //printf("%d %d %d",b,s,c);35 scanf("%I64d %I64d %I64d %I64d %I64d %I64d",&nb,&ns,&nc,&pb,&ps,&pc);36 scanf("%I64d",&r);37 long long lb=0,ub=INF;38 39 while(ub-lb>1)40 {41 long long mid=(lb+ub)/2;42 if(C(mid))43 lb=mid;44 else45 ub=mid;46 }47 48 printf("%I64d\n",lb);49 }50 51 return 0;52 }
View Code

 

整数:

最大化最小值

1 int L=mi,R=ma;2 while(L
View Code

最小化最大值

1 int L=mi,R=ma; 2 while(L
View Code

 

转载于:https://www.cnblogs.com/cyd308/p/4681289.html

你可能感兴趣的文章
golang语言中sync/atomic包的学习与使用
查看>>
P2605 [ZJOI2010]基站选址
查看>>
简单的股票分析系统
查看>>
FreeMark教程
查看>>
国王验毒酒问题
查看>>
DisplayAttribute没作用,why?
查看>>
技术专家写代码-以点带面谈做开发
查看>>
RxJS操作符(二)
查看>>
js 变量提升与函数提升
查看>>
java 使用AXIS调用远程的web service
查看>>
C++ 操作符重载
查看>>
深入理解.NET内存回收机制
查看>>
ERROR [main] zookeeper.RecoverableZooKeeper: ZooKeeper create failed after 4 attempts
查看>>
MyEclipse 8.5 安装 jBPM 插件
查看>>
C1FlexGrid(行背景色随鼠标移动更改)
查看>>
星际2的建筑,科技,军事时间表
查看>>
设计模式(10)---->策略模式
查看>>
(原)opencv直线拟合fitLine
查看>>
Ceph对象存储网关中的索引工作原理<转>
查看>>
Django+Bootstrap+Mysql 搭建个人博客(二)
查看>>