记录编号 |
386479 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[HAOI 2013]跑步训练 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.002 s |
提交时间 |
2017-03-24 17:42:45 |
内存使用 |
0.28 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int m,t,ts,tp,tx;
int all;
char lin;
int main()
{
freopen("HAOI2013T1.in","r",stdin);
freopen("HAOI2013T1.out","w",stdout);
scanf("%d%d%d%d%d",&m,&t,&ts,&tp,&tx);
for(int i=1;i<=t;i++)
{
cin>>lin;
if(lin=='u'||lin=='d')
{
m-=ts;
m-=tx;
if(m>=0)all++;
}
if(lin=='f')
{
m-=2*tp;
if(m>=0)all++;
}
}
printf("%d",all);
return 0;
}