Long Distance Racing

Bessie is training for her next race by running on a path that includes hills so that she will be prepared for any terrain. She has planned a straight path and wants to run as far as she can -- but she must be back to the farm within M seconds (1 ≤ M ≤ 10,000,000).

The entire path she has chosen is T units (1 ≤ ≤ 100,000) in length and consists of equal-length portions that are uphill, flat, or downhill. The input data describes path segment i with a single character Si that is uf, or d, indicating respectively uphill, flat, or downhill.

Bessie takes U seconds (1 ≤ ≤ 100) to run one unit of uphill path, F (1 ≤ F ≤ 100) seconds for a unit of flat path, and (1 ≤ D ≤ 100) seconds for a unit of downhill path. Note that, when returning home, uphill paths become downhill paths and downhill paths become uphill paths.

Find the farthest distance Bessie can get from the farm and still make it back in time.

Input

* Line 1: Five space-separated integers: MT, UF, and D
* Lines 2..T+1: Line i+1 describes path segment i with a single letter: Si

Output

* Line 1: A single integer that is the farthest distance (number of units) that Bessie can get from the farm and make it back in time.

题解:很简单的水题,上坡下坡统一算就行了;

代码:

#include <iostream>
#include <string>
#include <cstring>
#include <map>
#include <string.h>
#include <cstdio>
#include <algorithm>
#include <cmath>
using namespace std;
int main()
{
    int m,t,u,f,d;
    int sum=0,i=0;
    cin>>m>>t>>u>>f>>d;
    getchar();
    while(t--)
    {
        char c;
        cin>>c;
        getchar();
        if(c=='f') sum+=2*f;
        else sum+=(u+d);
        if(sum<m) i++;
    }
    cout<<i<<endl;
    return 0;
}

猜你喜欢

转载自blog.csdn.net/h326301035/article/details/81196054
今日推荐