# Climbing Stairs

You are climbing a stair case. It takesnsteps to reach to the top.

Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?

**Note:**&#x47;ivennwill be a positive integer.

分析

DP, n+1的数组，f\[0] 和f\[1]都是1 ，计算f\[1]，f\[2]推出来的

```
class Solution {
    public int climbStairs(int n) {
        if(n < 1)
            return n;
        int[] ret = new int[n + 1];
        ret[0] = 1;
        ret[1] = 1;
        for(int i = 2; i <= n ; i ++){
            ret[i] = ret[i - 2] + ret[i - 1]; 
        }
        return ret[n];
    }
}
```

不用数组

```
class Solution:
    def climbStairs(self, n):
        """
        :type n: int
        :rtype: int
        """
        if n <= 1:
            return 1
        p = 2
        pp = 1
        cur = p # cur = 0 

        for i in range(2,n):
            cur = p+pp
            pp,p = p,cur
        return cur #p
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nataliekung.gitbook.io/ladder_code/l4dong-tai-gui-hua/climbing-stairs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
