道しるべ-70.Climbing Stairs
質問する
You are climbing a staircase. It takes n steps to reach the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
に答える
与えられた条件下でn次のすべての方法の問題を計算した.典型的なDPアルゴリズム応用問題については,インデックス0,1,2に加えて,dp[n]=dp[n−1]+dp[n−2]式を適用することで容易に解決できる.
コード#コード#
class Solution:
def climbStairs(self, n: int) -> int:
dp = [0, 1, 2]
for i in range(3,n+1):
dp.append(dp[i-1] + dp[i-2])
return dp[n]
Reference
この問題について(道しるべ-70.Climbing Stairs), 我々は、より多くの情報をここで見つけました https://velog.io/@ddaynew365/리트코드-70.-Climbing-Stairsテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol