Check if an encoding represents a unique binary string
Given an encoding of a binary string of length k, the task is to find if the given encoding uniquely identifies a binary string or not. The encoding has counts of contiguous 1s (separated by 0s).
For example, encoding of 11111 is {5}, encoding of 01101010 is {2, 1, 1} and encoding of 111011 is {3, 2}.
Examples :
Input: encoding[] = {3, 3, 3}
Length, k = 12
Output: No
Explanation: There are more than one possible
binary strings. The strings are 111011101110
and 011101110111. Hence “No”
Input: encoding[] = {3, 3, 2}
Length, k = 10
Output: Yes
Explanation: There is only one possible encoding
that is 1110111011
A naive approach is to take an empty string and traverse through the n integers to no of 1s as given in encoding[0] and then add 1 zero to it, then encoding[1] 1s, and at the end check if the string length is equal to k then print “Yes” or print “No”
An efficient approach will be to add all the n integers to sum, and then add (n-1) to sum and check if it is equal to K, as n-1 will be the number of zeros in between every 1’s. Check if sum is equal to k, to get exactly one string or else there are more or none.
C++
// C++ program to check if given encoding // represents a single string. #include <bits/stdc++.h> using namespace std; bool isUnique(int a[], int n, int k) { int sum = 0; for (int i = 0; i < n; i++) sum += a[i]; sum += n - 1; // Return true if sum becomes k return (sum == k); } // Driver Code int main() { int a[] = {3, 3, 3}; int n = sizeof(a) / sizeof(a[0]); int k = 12; if (isUnique(a, n, k)) cout << "Yes"; else cout << "No"; return 0; } |
Java
// Java program to check if given encoding // represents a single string. import java.io.*; class GFG { static boolean isUnique(int []a, int n, int k) { int sum = 0; for (int i = 0; i < n; i++) sum += a[i]; sum += n - 1; // Return true if sum becomes k return (sum == k); } // Driver Code static public void main (String[] args) { int []a = {3, 3, 3}; int n = a.length; int k = 12; if (isUnique(a, n, k)) System.out.println("Yes"); else System.out.println("No"); } } // This code is contributed by vt_m |
Python3
# Python 3 program to check if given # encoding represents a single string. def isUnique(a, n, k): sum = 0 for i in range(0, n, 1): sum += a[i] sum += n - 1 # Return true if sum becomes k return (sum == k) # Driver Code if __name__ == '__main__': a = [3, 3, 3] n = len(a) k = 12 if (isUnique(a, n, k)): print("Yes") else: print("No") # This code is contributed by # Surndra_Gangwar |
C#
// C# program to check if given encoding // represents a single string. using System; class GFG { static bool isUnique(int []a, int n, int k) { int sum = 0; for (int i = 0; i < n; i++) sum += a[i]; sum += n - 1; // Return true if sum becomes k return (sum == k); } // Driver Code static public void Main () { int []a = {3, 3, 3}; int n = a.Length; int k = 12; if (isUnique(a, n, k)) Console.WriteLine("Yes"); else Console.WriteLine("No"); } } // This code is contributed by vt_m |
PHP
<?php // PHP program to check // if given encoding // represents a single string function isUnique( $a, $n, $k) { $sum = 0; for ($i = 0; $i < $n; $i++) $sum += $a[$i]; $sum += $n - 1; // Return true if // sum becomes k return ($sum == $k); } // Driver Code $a = array(3, 3, 3); $n = count($a); $k = 12; if (isUnique($a, $n,$k)) echo"Yes"; else echo "No"; // This code is contributed by anuj_67. ?> |
Output :
No
Time complexity : O(n)
Auxiliary Space : O(1)
This article is contributed by Striver. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- How to check if a given array represents a Binary Heap?
- Number of unique permutations starting with 1 of a Binary String
- Python program to check if a string contains all unique characters
- Efficiently check if a string has all unique characters without using any additional data structure
- Python | Check if a given string is binary string or not
- Check divisibility of binary string by 2^k
- Check if all the 1's in a binary string are equidistant or not
- Check if a binary string contains consecutive same or not
- Check if it is possible to rearrange a binary string with alternate 0s and 1s
- Check if a binary string has two consecutive occurrences of one everywhere
- Check if a binary string contains all permutations of length k
- Check if a binary string has a 0 between 1s or not | Set 1 (General approach)
- Check if a binary string has a 0 between 1s or not | Set 2 (Regular Expression Approach)
- Check whether a binary string can be formed by concatenating given N numbers sequentially
- Minimum deletions from string to reduce it to string with at most 2 unique characters



