记录编号 |
199628 |
评测结果 |
AAAAAAAAAA |
题目名称 |
摩托车游戏 |
最终得分 |
100 |
用户昵称 |
devil |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.012 s |
提交时间 |
2015-10-27 07:16:12 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <map>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=1010;
const int maxm=70010;
const int mod=1000000007;
double v(int x)
{
if(x<=1) return 10;
if(x<=2) return 9;
if(x<=3) return 8;
if(x<=4) return 7.5;
return 7;
}
double f[maxn];
int main()
{
freopen("carz.in","r",stdin);
freopen("carz.out","w",stdout);
//clock_t st=clock();
int S;double T;scanf("%d%lf",&S,&T);
S/=10;T/=60;for(int i=1;i<=S;i++) f[i]=inf;
for(int i=1;i<=S;i++)
{
for(int j=0;j<i;j++)
{
f[i]=min(f[i],f[j]+((j==0)?0:T)+double(i-j)/v(i-j));
}
}
printf("%.2lf\n",f[S]);
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}