[3/30]MIOJ刷題:爬樓梯

  1. 爬樓梯
    MIOJ 爬樓梯
package mioj.day4.ClimbStairs;

import java.util.Scanner;

/**
 * @author: chuanyi@88.com
 * @description: mioj: 爬樓梯 https://code.mi.com/problem/list/view?id=10&cid=14
 * @date: 2020/10/24 20:27
 */
public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext()) {
            int num = scanner.nextInt();
            long start = System.currentTimeMillis();
            System.out.println("1.climbStairsRecursive result: " + climbStairsRecursive(num));
            long time1 = System.currentTimeMillis();
            System.out.println("1.climbStairsRecursive time cost:" + (time1 - start) + " ms");
            System.out.println("2.climbStairsRecursiveImproved result: " + climbStairsRecursiveImproved(num));
            long time2 = System.currentTimeMillis();
            System.out.println("2.climbStairsRecursiveImproved time cost:" + (time2 - time1) + " ms");
            System.out.println("3.climbStairsIterative result: " + climbStairsIterative(num));
            long time3 = System.currentTimeMillis();
            System.out.println("3.climbStairsIterative time cost:" + (time3 - time2) + " ms");
            System.out.println("4.climbStairsDp result: " + climbStairsDp(num));
            long time4 = System.currentTimeMillis();
            System.out.println("4.climbStairsDp time cost:" + (time4 - time3) + " ms");
            System.out.println("5.climbStairsSlippedWindow result: " + climbStairsSlippedWindow(num));
            long time5 = System.currentTimeMillis();
            System.out.println("5.climbStairsSlippedWindow time cost:" + (time5 - time4) + " ms");


        }
    }

    /**
     * 遞歸做法
     *
     * @param num
     * @return
     */
    private static int climbStairsRecursive(int num) {
        if (num < 1) {
            return 0;
        }
        if (num <= 2) {
            return num;
        }
        return climbStairsRecursive(num - 1)
                + climbStairsRecursive(num - 2);
    }

    /**
     * 遞歸做法存儲改進版.有人叫它備忘錄??法
     *
     * @param num
     * @return
     */
    private static int climbStairsRecursiveImproved(int num) {
        if (num < 1) {
            return 0;
        }
        if (num <=2){
            return num;
        }
        int[] count = new int[num+1];//注意第一下標丟棄不用
        return climbStairsRecursive(num - 1, count)
                + climbStairsRecursive(num - 2, count);
    }

    private static int climbStairsRecursive(int num, int[] count) {
        if (num <= 2) {
            count[num] = num;
        } else {
            count[num] = climbStairsRecursive(num - 1, count)
                    + climbStairsRecursive(num - 2, count);
        }
        return count[num];
    }

    /**
     * 迭代
     *
     * @param num
     * @return
     */
    private static int climbStairsIterative(int num) {
        if (num < 1) {
            return 0;
        }
        int cur = 1;
        int pre = 0;
        for (int i = 0; i < num; i++) {
            int temp = cur;
            cur += pre;
            pre = temp;
        }
        return cur;
    }


    /**
     * 動態(tài)規(guī)劃法
     * @param num
     * @return
     */
    private static int climbStairsDp(int num){
        if (num < 1){
            return 0;
        }
        if (num <= 2){
            return num;
        }
        int[] count = new int[num+1];//這里下標從1開始使用扑眉,比較容易理解和表示
        count[1] = 1;
        count[2] = 2;
        for (int i = 3; i <= num; i++) {
            count[i] = count[i -1] + count[i - 2];
        }
        return count[num];
    }

    /**
     * 每個結果只和上一個和上上一個結果有關,所以每次只保留這兩個結果即可
     * @param num
     * @return
     * 3
     * count 1 2 3
     * cur 1 1 2 2
     * pre 1 1 1
     * prepre 0 1 1
     * temp 1 1 2
     * temp2 1 1 1
     *
     *
     *
     */
    private static int climbStairsSlippedWindow(int num){
        if (num < 1){
            return 0;
        }
        if (num <= 2){
            return num;
        }
        int count = 0;
        int cur = 0;
        int pre = 1;
        int prepre = 0;
        while (count < num){
            cur = pre + prepre;
            prepre  = pre;
            pre = cur;

            count ++;
        }
        return cur;

    }
}

參考: (爬樓梯問題)[https://blog.csdn.net/wu2304211/article/details/52717578?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param]

?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末崇堰,一起剝皮案震驚了整個濱河市沈自,隨后出現(xiàn)的幾起案子我磁,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件趴泌,死亡現(xiàn)場離奇詭異告组,居然都是意外死亡煤伟,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來持偏,“玉大人驼卖,你說我怎么就攤上這事『韪眩” “怎么了酌畜?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長卿叽。 經(jīng)常有香客問我桥胞,道長,這世上最難降的妖魔是什么考婴? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任贩虾,我火速辦了婚禮,結果婚禮上沥阱,老公的妹妹穿的比我還像新娘缎罢。我一直安慰自己,他們只是感情好考杉,可當我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布策精。 她就那樣靜靜地躺著,像睡著了一般崇棠。 火紅的嫁衣襯著肌膚如雪咽袜。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天枕稀,我揣著相機與錄音询刹,去河邊找鬼。 笑死萎坷,一個胖子當著我的面吹牛凹联,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播哆档,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼蔽挠,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了虐呻?” 一聲冷哼從身側響起象泵,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎斟叼,沒想到半個月后偶惠,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡朗涩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年忽孽,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡兄一,死狀恐怖厘线,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情出革,我是刑警寧澤造壮,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站骂束,受9級特大地震影響耳璧,放射性物質發(fā)生泄漏。R本人自食惡果不足惜展箱,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一旨枯、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧混驰,春花似錦攀隔、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至治泥,卻和暖如春筹煮,著一層夾襖步出監(jiān)牢的瞬間遮精,已是汗流浹背居夹。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留本冲,地道東北人准脂。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像檬洞,于是被迫代替她去往敵國和親狸膏。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,722評論 2 345