Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
67348 | 杨竣周 | 最小乘车费用 | C++ | 通过 | 100 | 0 MS | 296 KB | 328 | 2023-01-12 16:46:19 |
#include<bits/stdc++.h> using namespace std; int k,c[10],dp[10001]; int main(){ memset(dp,0x3f,sizeof(dp)); dp[0]=0; for(int i=0;i<10;i++) scanf("%d",&c[i]); scanf("%d",&k); for(int i=1;i<=k;i++){ for(int j=1;j<=10;j++){ if(i>=j) dp[i]=min(dp[i],dp[i-j]+c[j-1]); } } printf("%d",dp[k]); return 0; }