记录编号 |
194232 |
评测结果 |
AAAAAAAAAA |
题目名称 |
护卫队 |
最终得分 |
100 |
用户昵称 |
devil |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.040 s |
提交时间 |
2015-10-16 09:32:21 |
内存使用 |
8.12 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=1000010;
const int mod=1000000007;
ll w[maxn];
double v[maxn][maxn];
double f[maxn],s[maxn];
int main()
{
freopen("convoy.in","r",stdin);
freopen("convoy.out","w",stdout);
//clock_t st=clock();
ll W;int n;double l;
scanf("%lld%lf%d",&W,&l,&n);
for(int i=1;i<=n;i++) scanf("%lld%lf",&w[i],&s[i]),w[i]+=w[i-1];
double nv;
for(int i=1;i<=n;i++)
{
nv=s[i];f[i]=inf;
for(int j=i;j<=n;j++)
{
nv=min(nv,s[j]);
v[i][j]=nv;
}
}
f[0]=0;
for(int i=1;i<=n;i++)
{
f[i]=f[i-1]+l/s[i];
for(int j=i-2;w[i]-w[j]<=W&&j>=0;j--)
{
f[i]=min(f[i],f[j]+l/v[j+1][i]);
}
}f[n]*=60;
printf("%.1lf\n",f[n]);
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}