首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】371C - Hamburgers(二分)

【CodeForces】371C - Hamburgers(二分)

作者头像
FishWang
发布2025-08-26 20:36:07
发布2025-08-26 20:36:07
10200
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

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 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 %I64dspecifier.

Output

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

Examples

input

代码语言:javascript
代码运行次数:0
运行
复制
BBBSSC
6 4 1
1 2 3
4

output

代码语言:javascript
代码运行次数:0
运行
复制
2

input

代码语言:javascript
代码运行次数:0
运行
复制
BBC
1 10 1
1 10 1
21

output

代码语言:javascript
代码运行次数:0
运行
复制
7

input

代码语言:javascript
代码运行次数:0
运行
复制
BSC
1 1 1
1 1 3
1000000000000

output

代码语言:javascript
代码运行次数:0
运行
复制
200000000001

看代码吧,二分的范围代码中写的挺明白,check函数写好就行了。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
char han[111];
__int64 need[4] = {0};
__int64 have[4] = {0};
__int64 cost[4] = {0};
__int64 v;
int l;
bool check(__int64 x)
{
	__int64 rec = v;
	for (int i = 0 ; i < 3 ; i++)
	{
		if (need[i] == 0)
			continue;
		if (have[i] / need[i] < x)
		{
			if ((have[i] + rec / cost[i]) / need[i] < x)
				return false;
			else
				rec -= (x * need[i] - have[i]) * cost[i];
		}
	}
	return true;
}
int main()
{
	scanf ("%s",han);
	l = strlen(han);
	for (int i = 0 ; i < l ; i++)
	{
		if (han[i] == 'B')
			need[0]++;
		else if (han[i] == 'S')
			need[1]++;
		else
			need[2]++;
	}
	scanf ("%I64d %I64d %I64d",have,have+1,have+2);
	scanf ("%I64d %I64d %I64d",cost,cost+1,cost+2);
	scanf ("%I64d",&v);
	__int64 l,r,mid;
	l = r = 0;
	for (int i = 0 ; i < 3 ; i++)
	{
		if (need[i] == 0)
			continue;
		r = max (r , (have[i] + v / cost[i]) / need[i]);
	}
	while (r >= l)
	{
		mid = (l + r) >> 1;
		if (check(mid))
			l = mid + 1;
		else
			r = mid - 1;
	}
	printf ("%I64d\n",r);
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档