比赛 专项训练十题 评测结果 AAAAAAA
题目名称 最小乘车费用 最终得分 100
用户昵称 Emine 运行时间 0.002 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2017-05-30 21:55:01
显示代码纯文本
#include<cmath>  
#include<iostream>  
#include<cstdio>
#include<cstring>
using namespace std;

const int maxn=110;

int cost[11],n;
int f[maxn];

void dp(){
	for (int v=0;v<=n;v++){
		for (int j=1;j<=10;j++){
			if (v>=j) f[v]=min(f[v],f[v-j]+cost[j]);
		}
	}
}

int main(){
	freopen("busses.in","r",stdin);
	freopen("busses.out","w",stdout);
	for(int i=1;i<=10;i++){
		scanf("%d",&cost[i]);
	}
	scanf("%d",&n);
	for (int i=1;i<=n;i++){
		f[i]=2000000;
	}
	dp();
	printf("%d",f[n]);
	return 0;
}