This commit is contained in:
2025-12-05 21:05:14 +08:00
parent 2e8537eb7f
commit 36c5339b1f
3 changed files with 76 additions and 0 deletions

15
src/746.c Normal file
View File

@@ -0,0 +1,15 @@
// This file is generated by mkfile.py
// Date: 2025-12-05
#include <solution/746.h>
#define min(x, y) ((x) < (y) ? (x) : (y))
int minCostClimbingStairs(int *cost, int costSize)
{
int dp[costSize + 1];
dp[0] = dp[1] = 0;
for (int i = 2; i <= costSize; i++)
dp[i] = min(dp[i - 1] + cost[i - 1], dp[i - 2] + cost[i - 2]);
return dp[costSize];
}