zoukankan      html  css  js  c++  java
  • CodeForces

    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 ≤ 1000, 1 ≤ 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.

    Examples

    Input
    4 2 3 10
    wwhw
    Output
    2
    Input
    5 2 4 13
    hhwhh
    Output
    4
    Input
    5 2 4 1000
    hhwhh
    Output
    5
    Input
    3 1 100 10
    whw
    Output
    0

    Note

    In the first sample test you can rotate the first photo (3 seconds), watch the first photo (1 seconds), move left (2 second), rotate fourth photo (3 seconds), watch fourth photo (1 second). The whole process takes exactly 10 seconds.

    Note that in the last sample test the time is not enough even to watch the first photo, also you can't skip it.

    题意:最开始手机显示第一张照片,每次滑动可以到达上一张照片或者下一张,滑动的时间为a;如果第一次看到某照片,会花1时间去观察。如果照片是w型的,观察前需要格外花B时间。求T时间里最多能观察到多少照片。

    思路:环型的,先加倍。然后双指针即可。

    #include<bits/stdc++.h>
    #define rep(i,a,b) for(int i=a;i<=b;i++)
    using namespace std;
    const int maxn=1000010;
    char c[maxn]; int a[maxn],sum[maxn];
    int main()
    {
        int N,A,B,T,ans=0;
        scanf("%d%d%d%d%s",&N,&A,&B,&T,c+1);
        rep(i,1,N) a[i]=a[i+N]=c[i]=='h'?1:1+B;
        rep(i,1,N+N) sum[i]=sum[i-1]+a[i];
        int L=2,R=N+1;
        while(L<=N+1&&R<=N+N){
            while(R-L+1>N||sum[R]-sum[L-1]+(R-L+min(R-N-1,N+1-L))*A>T) L++;
            ans=max(ans,R-L+1);
            R++;
        }
        printf("%d
    ",ans);
        return 0;
    }
  • 相关阅读:
    文件隐藏在一张图片里
    晶振
    主宰全球的10大算法
    java+mysql连接的优化
    排序剔除
    js数据类型
    字符实体
    表单
    定义样式表
    布局相关的属性
  • 原文地址:https://www.cnblogs.com/hua-dong/p/9568347.html
Copyright © 2011-2022 走看看