[8.1] Triple Step

Posted Phoebe815

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[8.1] Triple Step相关的知识,希望对你有一定的参考价值。

A child is running up a staircase with n steps and can hop either 1 step, 2 steps, or 3 steps at a time. Implement a method to count how many possible ways the child can run up the stairs.

 

    public static int getPossibleWays(final int n) {
        int[] memo = new int[n + 1];
        return helper(n, memo);
    }

    private static int helper(int i, int[] memo) {
        if(i == 0 || i == 1) return 1;
        if(i ==2) return 2;
        if(i >=3 && memo[i] == 0) {
            memo[i] = helper(i -1, memo) + helper(i -2, memo) + helper(i -3, memo);
        }
        return memo[i];
    }

 

以上是关于[8.1] Triple Step的主要内容,如果未能解决你的问题,请参考以下文章

CF1168B Good Triple

sublime text 3 添加 javascript 代码片段 ( snippet )

光照 漫反射光照

光照 漫反射光照

光照 漫反射光照

光照 漫反射光照