Saturday, July 10, 2021

Published July 10, 2021 by Anonymous with 1 comment

Check whether the product of every subsequence is a perfect square or not

Given an array arr[] consisting of N positive integers, the task is to check if the product of elements of every subsequence of the given array arr[] is a perfect square or not. If found to be true, then print Yes. Otherwise, print No.

Examples:

Input: arr[] = {1, 4, 100}
Output: Yes
Explanation:
Following are the subsequences of the given array arr[]:

  1. {1}, the product is equal to 1, and is a perfect square.
  2. {1, 4}, the product is equal to 4, and is a perfect square.
  3. {1, 100}, the product is equal to 100 and is a perfect square.
  4. {1, 4, 100}, the product is equal to 400 and is a perfect square.
  5. {4}, the product is equal to 4 and is a perfect square.
  6. {4, 100}, the product is equal to 400 and is a perfect square.
  7. {100}, the product is equal to 100 and is a perfect square.

Therefore, print “Yes”.

Input: arr[] = {1, 3}
Output: No  


Naive Approach: The simplest approach to solve the given problem is to generate all possible subsequences of the given array and if the product elements of every subsequence is a perfect square, then print Yes. Otherwise, print No.

Time Complexity: O(N*2N)
Auxiliary Space: O(1)

Efficient Approach: The above approach can also be optimized using the fact that the product of two perfect square numbers will also be a perfect square. Therefore, to check if the individual product of elements of all subsequences is a perfect square or not, the idea is to check if all the array elements are perfect squares or not. If found to be true, then print Yes. Otherwise, print No.

Below is the implementation of the above approach:

C++

  

#include <bits/stdc++.h>

using namespace std;

  

string perfectSquare(int arr[], int N)

{

    

    for (int i = 0; i < N; i++) {

  

        

        

        int p = sqrt(arr[i]);

  

        if (p * p != arr[i]) {

            return "No";

        }

    }

  

    

    return "Yes";

}

  

int main()

{

    int arr[] = { 1, 4, 100 };

    int N = sizeof(arr) / sizeof(arr[0]);

    cout << perfectSquare(arr, N);

  

    return 0;

}

Output:
Yes

Time Complexity: O(N)
Auxiliary Space: O(1)

Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.  To complete your preparation from learning a language to DS Algo and many more,  please refer Complete Interview Preparation Course.

In case you wish to attend live classes with experts, please refer DSA Live Classes for Working Professionals and Competitive Programming Live for Students.


Adblock test (Why?)


Original page link

Best Cool Tech Gadgets

Top favorite technology gadgets
      edit

1 comment:

  1. Check Whether The Product Of Every Subsequence Is A Perfect Square Or Not ~ Cnc Software >>>>> Download Now

    >>>>> Download Full

    Check Whether The Product Of Every Subsequence Is A Perfect Square Or Not ~ Cnc Software >>>>> Download LINK

    >>>>> Download Now

    Check Whether The Product Of Every Subsequence Is A Perfect Square Or Not ~ Cnc Software >>>>> Download Full

    >>>>> Download LINK Ke

    ReplyDelete