Skip to main content

Find Loveable strings containing permutations of ANU


Anubhav has a crush on Anu. Therefore he likes the letters A,N and U the most.

He likes those strings which consists of only A N U

According to him, the strings containing A,N and U only are "LOVABLE" If they contain either of these patterns:


1) ANU


2) AUN


3) NAU


4) NUA


5) UAN


6) UNA


He asks you to find out how many LOVABLE strings are there of length N.


Note: Assume all strings are made of A,N,U. Consider all other alphabets as non-existent.


Input format: First line contains T the number of test cases. Next T lines contain a single integer N, denoting the length of string


Output format: Output the count of LOVABLE strings of length N in a single line for each test case


Constraints:


1<= T <= 30


1<= N <= 30

Solution : 

// Online C++ compiler to run C++ program online
#include<bits/stdc++.h>
using namespace std;
class Solution{
   
    int a = 1;
    int n1 = 7;
    int u = 3;
    public :
    int solve(int n , int pre , int pre_pre , int sum , bool x  )
    {  
        if(n ==0)
        {
            if(x)
            return 1;
            return 0;
        }
        long long result =0;
        if(sum == a + pre + pre_pre )
        {
            result += solve(n-1 , a , pre , sum , true );
        }
        else
        result += solve(n-1 , a , pre , sum , x);
       
        if(sum == n1 + pre + pre_pre )
        {
            result += solve(n-1 , n1 , pre , sum , true );
        }
        else
        result += solve(n-1 , n1 , pre , sum , x);
       
        if(sum == u + pre + pre_pre )
        {
            result += solve(n-1 , u , pre , sum , true );
        }
        else
        result += solve(n-1 , u , pre , sum , x);
       
        return result;
       
       
       
       
    }
    int Loveable(int  n )
    {
        if(n == 0 || n==1 || n==2)
        {
            return 0;
        }
        return solve(n , -1 , -1 , 11 , false);
       
       
    }
};


int main() {
   
    Solution s ;
    int n = 4;
    int x = s.Loveable(n);
    cout << x << " "<<"\n";
}


The dynamic programming solution will be uploaded soon, Stay tuned.

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: Count Total Set Bits | interviewbit | Amazon previous year problems

  Problem Description Given a positive integer A , the task is to count the total number of set bits in the binary representation of all the numbers from 1 to A . Return the count modulo 10 9 + 7 . Problem Constraints 1 <= A <= 10 9 Input Format First and only argument is an integer A . Output Format Return an integer denoting the ( Total number of set bits in the binary representation of all the numbers from 1 to A )modulo 10 9 + 7 . Example Input Input 1: A = 3 Input 2: A = 1 Example Output Output 1: 4 Output 2: 1 Example Explanation Explanation 1: DECIMAL BINARY SET BIT COUNT 1 01 1 2 10 1 3 11 2 1 + 1 + 2 = 4 Answer = 4 % 1000000007 = 4 Explanation 2: A = 1 DECIMAL BINARY SET BIT COUNT 1 01 1 Answer = 1 % 1000000007 = 1 solution : int  Solution::solve ( int  A )   {      if ( A  ==   0 )      {          return   0 ;      }      if ( A  == 1    )      {          return   1