CodeForces 650B(二分)

B. Image Preview
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya's telephone contains n photos. Photo number 1 is currently opened on the phone. It is allowed to move left and right to the adjacent photo by swiping finger over the screen. If you swipe left from the first photo, you reach photo n. Similarly, by swiping right from the last photo you reach photo 1. It takes a seconds to swipe from photo to adjacent.

For each photo it is known which orientation is intended for it — horizontal or vertical. Phone is in the vertical orientation and can't be rotated. It takes b second to change orientation of the photo.

Vasya has T seconds to watch photos. He want to watch as many photos as possible. If Vasya opens the photo for the first time, he spends 1 second to notice all details in it. If photo is in the wrong orientation, he spends b seconds on rotating it before watching it. If Vasya has already opened the photo, he just skips it (so he doesn't spend any time for watching it or for changing its orientation). It is not allowed to skip unseen photos.

Help Vasya find the maximum number of photos he is able to watch during T seconds.

Input

The first line of the input contains 4 integers n, a, b, T (1 ≤ n ≤ 5·1051 ≤ a, b ≤ 10001 ≤ T ≤ 109) — the number of photos, time to move from a photo to adjacent, time to change orientation of a photo and time Vasya can spend for watching photo.

Second line of the input contains a string of length n containing symbols 'w' and 'h'.

If the i-th position of a string contains 'w', then the photo i should be seen in the horizontal orientation.

If the i-th position of a string contains 'h', then the photo i should be seen in vertical orientation.

Output

Output the only integer, the maximum number of photos Vasya is able to watch during those T seconds.

这题题意就是你有一个手机,你现在要看照片,照片有横着和竖着的,你要把横着的竖过来。看一张照片需要一秒,翻页需要a秒,调整照片需要b秒。问你有t秒,最多能看多少张照片。

因为他是递增的,向左走二分右面的照片和向右左二分左面的照片,求一个最大值即可。

AC代码:

#include<stdio.h>
#include<string.h>
#include<iostream>
#include<algorithm>
#include<bitset>
#include<set>
#include<vector>
#include<map>
using namespace std;
typedef long long ll;
const int maxn=500100;
int num[maxn];
ll zuo[maxn],you[maxn];
int main(){
	char c;
	int n,a,b,t;
	memset(num,0,sizeof(num));
	memset(zuo,0,sizeof(zuo));
	memset(you,0,sizeof(you));
	scanf("%d%d%d%d%*c",&n,&a,&b,&t);
	for(int i=1;i<=n;i++){
		scanf("%c",&c);
		if(c=='w')	num[i]=(1+a+b);
		else num[i]=(1+a);
	}
	num[1]-=a;
	for(int i=1;i<=n;i++)
		you[i]=you[i-1]+num[i];
	for(int i=n;i>=1;i--)
		zuo[i]=zuo[i+1]+num[i];
	int l=0,r=n,m;
	int ans=-1;
	if(you[n]<=t){
		cout<<n<<endl;
		return 0;
	}
	if(you[1]>t){
		cout<<0<<endl;
		return 0;
	}
	for(int i=1;i<=n;i++){
		l=0,r=n;	
		while(l+1<r){
			m=(l+r)/2;
			if(zuo[m]+you[i]+(i-1)*a>t)
				l=m;
			else r=m;
		}
		if(zuo[r]+you[i]+(i-1)*a<=t)
			ans=max(n-r+1+i,ans);
		else if(you[i]<=t)
			ans=max(i,ans);
	}
	for(int i=n;i>1;i--){
		l=1,r=n;	
		while(l+1<r){
			m=(l+r)/2;
			if(you[m]+zuo[i]+(n-i+1)*a>t)
				r=m;
			else l=m;
		}
		if(you[l]+zuo[i]+(n-i+1)*a<=t)
			ans=max(n-i+1+l,ans);
		else if(you[1]+zuo[i]<=t)
			ans=max(n-i+2,ans);
	}
	cout<<ans<<endl;
	
	
	
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值