记录编号 80916 评测结果 AAAAAAAAAA
题目名称 护卫队 最终得分 100
用户昵称 Gravatarcstdio 是否通过 通过
代码语言 C++ 运行时间 0.072 s
提交时间 2013-11-07 22:05:01 内存使用 15.62 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
using namespace std;
#define INF 1e16
const int SIZEN=1001;
double maxweight,length;
int n;
double weight[SIZEN]={0},cost[SIZEN]={0};//cost为过桥时间
double sumw[SIZEN][SIZEN]={0},fcost[SIZEN][SIZEN]={0};//fcost为车队过桥时间
double f[SIZEN]={0};
void init(void){
	int i,j;
	for(i=1;i<=n;i++){
		sumw[i][i]=weight[i];
		for(j=i+1;j<=n;j++) sumw[i][j]=sumw[i][j-1]+weight[j];
	}
	for(i=1;i<=n;i++){
		fcost[i][i]=cost[i];
		for(j=i+1;j<=n;j++) fcost[i][j]=max(fcost[i][j-1],cost[j]);
	}
	for(i=1;i<=n;i++) f[i]=INF;
}
void DP(void){
	int i,j;
	for(i=1;i<=n;i++){
		for(j=i;j>=1;j--){
			if(sumw[j][i]>maxweight) break;
			f[i]=min(f[i],f[j-1]+fcost[j][i]);
		}
	}
}
void read(void){
	scanf("%lf%lf%d",&maxweight,&length,&n);
	int i;
	for(i=1;i<=n;i++){
		scanf("%lf%lf",&weight[i],&cost[i]);
		cost[i]=length/cost[i]*60;
	}
}
int main(){
	freopen("convoy.in","r",stdin);
	freopen("convoy.out","w",stdout);
	read();
	init();
	DP();
	printf("%.1lf",f[n]);
	return 0;
}