博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
746. Min Cost Climbing Stairs 最不费力的加权爬楼梯
阅读量:4965 次
发布时间:2019-06-12

本文共 1527 字,大约阅读时间需要 5 分钟。

[抄题]:

On a staircase, the i-th step has some non-negative cost cost[i] assigned (0 indexed).

Once you pay the cost, you can either climb one or two steps. You need to find minimum cost to reach the top of the floor, and you can either start from the step with index 0, or the step with index 1.

Example 1:

Input: cost = [10, 15, 20]Output: 15Explanation: Cheapest is start on cost[1], pay that cost and go to the top.

 

Example 2:

Input: cost = [1, 100, 1, 1, 1, 100, 1, 1, 100, 1]Output: 6Explanation: Cheapest is start on cost[0], and only step on 1s, skipping cost[3].

 [暴力解法]:

时间分析:

空间分析:

[奇葩输出条件]:

[奇葩corner case]:

由于一次可以走2步,数组的最后一个数肯定是可以跳过不用走的。走2步的埋伏,第一次见。

[思维问题]:

以为爬楼梯是坐标型:746:第0位拿来初始化的爬楼梯 符合序列型

[一句话思路]:

[输入量]:空: 正常情况:特大:特小:程序里处理到的特殊情况:异常情况(不合法不合理的输入):

[画图]:

[一刷]:

[二刷]:

[三刷]:

[四刷]:

[五刷]:

  [五分钟肉眼debug的结果]:

新变量要声明啊,别养成一上来就写的习惯啊

[总结]:

由于一次可以走2步,数组的最后一个数肯定是可以跳过不用走的。走2步的埋伏,第一次见。

“第0位”+初始化 = 序列型

[复杂度]:Time complexity: O(n) Space complexity: O(n)

[英文数据结构或算法,为什么不用别的数据结构或算法]:

[关键模板化代码]:

[其他解法]:

[Follow Up]:

[LC给出的题目变变变]:

 [代码风格] :

class Solution {    public int minCostClimbingStairs(int[] cost) {        //state        int[] f = new int[cost.length + 1];        //ini        f[0] = cost[0];        f[1] = cost[1];        //function        for (int i = 2; i <= cost.length; i++) {            int costV = (i == cost.length) ? 0 : cost[i];            f[i] = Math.min(f[i - 1] + costV, f[i - 2] + costV);        }        //answer        return f[cost.length];    }}
View Code

 

转载于:https://www.cnblogs.com/immiao0319/p/8555631.html

你可能感兴趣的文章
素数筛法(Eratosthenes筛法)
查看>>
Security Guards (Gym - 101954B)( bfs + 打表 )
查看>>
Arranging Your Team HDU - 3720 【DFS】
查看>>
UVA - 1152 --- 4 Values whose Sum is 0(二分)
查看>>
【I'm Telling the Truth】【HDU - 3729】 【匈牙利算法,DFS】
查看>>
整除分块思想
查看>>
【Isabella Message】 【SPOJ - ISAB】【HDU-4119】【模拟】【矩阵的旋转】
查看>>
【畅通工程 HDU - 1232 】【并查集模板题】
查看>>
【统计难题】【HDU - 1251】【map打表或字典树】【字典树模板】
查看>>
【还是畅通工程 HDU - 1233】【Kruskal模板题】
查看>>
【hdu 2544最短路】【Dijkstra算法模板题】
查看>>
【Calling Circles UVA - 247 】【Floyd + dfs】
查看>>
【改革春风吹满地 HDU - 2036 】【计算几何-----利用叉积计算多边形的面积】
查看>>
【Audiophobia UVA - 10048 】【Floyd算法】
查看>>
【Fishing Master HDU - 6709 】【贪心】
查看>>
【Bazinga HDU - 5510 】【考察strstr()的使用】【贪心】
查看>>
【Windows Of CCPC HDU - 6708】【打表,找规律】
查看>>
【Bit String Reordering UVALive - 6832 】【模拟】
查看>>
(转载)博弈汇总【巴什博奕,威佐夫博弈,尼姆博弈,斐波那契博弈】
查看>>
【数据结构作业】-【带头结点的单链表就地逆置】
查看>>