Skip to main content

Solution : Count ways to reach the n'th stair | Dynamic programming | geeksforgeeks

 There are n stairs, a person standing at the bottom wants to reach the top. The person can climb either 1 stair or 2 stairs at a time. Count the number of ways, the person can reach the top (order does matter).

Example 1:

Input:
n = 4
Output: 5
Explanation:
You can reach 4th stair in 5 ways. 
Way 1: Climb 2 stairs at a time. 
Way 2: Climb 1 stair at a time.
Way 3: Climb 2 stairs, then 1 stair
and then 1 stair.
Way 4: Climb 1 stair, then 2 stairs
then 1 stair.
Way 5: Climb 1 stair, then 1 stair and
then 2 stairs.

Example 2:

Input:
n = 10
Output: 89 
Explanation: 
There are 89 ways to reach the 10th stair.

Your Task:
Complete the function countWays() which takes the top stair number m as input parameters and returns the answer % 10^9+7.

Expected Time Complexity : O(n)
Expected Auxiliary Space: O(1)

Constraints:
1 ≤ n ≤ 104



solution :

 

In this solution , i have fibbonacci approach.

The function int count() is the solution of fibbonacci series using memoization methord of dynamic programming.



class Solution

{

    public:

    //Function to count number of ways to reach the nth stair.

    long long int t = 10e9 +7;

    int count(int n , int dp[])

    {

        if(n <=1)

        return dp[n] =1;

        else

        if( dp[n] != -1)

         return dp[n] ;

        else

         dp[n] = (count(n-1 , dp) + count(n-2 , dp))%1000000007;

         return dp[n] ;

    }




    int countWays(int n)

    {    

        int dp[n+1] ;

        memset(dp , -1 , sizeof (dp));

        count(n , dp);

        return dp[n] %1000000007 ;

        

        

    }

};




Comments

Popular posts from this blog

[PDF DOWNLOAD] AKTU Quantum series data structure b.tech 2nd year download

  All AKTU Quantums are available here. Get your hands on AKTU Quantums and boost your grades in AKTU semester exams. You can either search them category wise or can use the search bar or can manually search on this page. Download aktu second year quantum pdf data structures  download  data structures quantum aktu download aktu data structures quantum click here to download  write in comment section if you want quantum of any other subject.

solution : Snape and Ladder | codechef | Problem Code: SNAPE

  Snape and Ladder  Problem Code:  SNAPE Professor Snape has lots of potions. Bottles containing all types of potions are stacked on shelves which cover the entire wall from floor to ceiling. Professor Snape has broken his bones several times while climbing the top shelf for retrieving a potion. He decided to get a ladder for him. But he has no time to visit Diagon Alley. So he instructed Ron Weasley to make a ladder for him. Professor Snape specifically wants a step ladder which looks like an inverted 'V' from side view. Professor just mentioned two things before vanishing- B  - separation between left side (LS) and right side (RS) on the ground LS  - the length of left side What should be the length of  RS ? At one extreme  LS  can be vertical and at other  RS  can be vertical. Ron is angry and confused. Since Harry is busy battling Voldemort, its your duty to help him find the minimum and maximum length of  RS . Input First line contains single integer  T , the number of tes

solution: Special Fibonacci | codechef | Problem Code: FIBXOR01

  Special Fibonacci  Problem Code:  FIBXOR01 Sankalp recently learned  Fibonacci numbers  and now he is studying different algorithms to find them. After getting bored of reading them, he came with his own new type of numbers. He defined them as follows:   f(0) = a;  f(1) = b;  f(n) = f(n-1) ^ f(n-2);   when  n >1, where ^ denotes the  bitwise xor operation. You are given three integers  a , b  and  n  , calculate  f(n) . Input The input contains one or more independent test cases. The first line of input contains a single integer   T  ( 1≤ T ≤10 3 ), the number of test cases. Each of the  T  following lines contains three space-separated integers  a ,  b , and   n  ( 0≤ a , b , n ≤10 9 ) respectively. Output For each test case, output   f ( n ) . Constraints 1 < = T < = 1000 1 <= T <= 1000 0 < = a , b , n < = 10 9 0 <= a , b , n <= 10 9 Sample Input 4 86 77 15 93 35 86 92 49 21 62 27 90 Sample output 86 126 92 62 SOlution :  This question looks like of recur