CodeForces 371C Hamburgers 二分

/**
CodeForces 371C Hamburgers 二分
链接:https://codeforces.com/problemset/problem/371/C
题意:给定一个只含'B' 'S' 'C' 字符的字符串;
现在给出部分'B' 'S' 'C' 的数量 及 分别对应字符的价格;
现在拥有sum的钱 这些能够买到相应的字符
问  买入部分字符后 最多能够得到多少个原始的字符串

分析:二分直接枚举答案,看所花钱和拥有的钱的大小即可卡出答案;

*/

#include<bits/stdc++.h>
#define ll long long
using namespace std;

int cntb,cnts,cntc;
int nb,ns,nc;
int pb,ps,pc;
ll sum;

bool judge(ll x){
	ll cost=0;
	if(x*cntb>nb) cost+=(x*cntb-nb)*pb;
	if(x*cnts>ns) cost+=(x*cnts-ns)*ps;
	if(x*cntc>nc) cost+=(x*cntc-nc)*pc;
	return cost>sum;
}

int main (){
	ios_base::sync_with_stdio(false);
	cin.tie(0),cout.tie(0);
	string str;
	cin>>str;
	cntb=0,cnts=0,cntc=0;
	int len=str.length();
	for(int i=0;i<len;i++)
		if(str[i]=='B') cntb++;
		else if(str[i]=='S') cnts++;
		else if(str[i]=='C') cntc++;
	cin>>nb>>ns>>nc;
	cin>>pb>>ps>>pc;
	cin>>sum;
	ll l=0,r=1e12+101,mid;//二分上界为最多的字符数量; 或者是  sum + max(na,nb,nc) + 1;
	while(r-l>1){
		mid=(l+r)/2;
		if(judge(mid)) r=mid;
		else l=mid;
	}
	cout<<l<<endl;
	return 0;
}

 

根据引用的内容,CodeForces的初始分由1500改为了1400,并且前六场的初始分配如下:第一场500分,第二场350分,第三场250分,第四场150分,第五场100分,第六场50分。所以,根据你在第一场的表现分为368,你的总分应为868(1400+368)。接下来的五场比赛,你的表现分将根据具体情况来决定。每场比赛的表现分会对你的总分产生影响。 关于其他引用和的代码,它们似乎是一些针对不同情况进行计算和输出的算法,并不直接涉及到CodeForces上的分数计算。所以,如果你有关于CodeForces上分的具体问题,请提供更多详细信息。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [CodeForces前六场定级赛赋分规则(2020.5修订)及各段位对应分数段](https://blog.csdn.net/Sunshine_xiaohao/article/details/112106625)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [CodeForces上分日记 (思维题)(A. Garland)1809A (Educational Round 145 For Div.2)](https://blog.csdn.net/weixin_60375636/article/details/130243342)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [【codeforces】一切为了上分:骚操作合集](https://blog.csdn.net/weixin_45497996/article/details/109157711)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值