Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
111970 | 梁颢城 | 使用最小花费爬楼梯 | C++ | 通过 | 100 | 0 MS | 260 KB | 273 | 2023-11-25 09:33:13 |
#include<bits/stdc++.h> using namespace std; int dp[1001]; int cost[1001]; signed main(){ int n; cin >> n; for(int i = 1;i <= n;i++){ cin >> cost[i]; } for(int i= 2;i <= n;i++){ dp[i] = min(dp[i-1] + cost[i],dp[i-2] + cost[i-1]); } cout << dp[n]; }