Open In App

Sub-string that contains all lowercase alphabets after performing the given operation

Improve
Improve
Like Article
Like
Save
Share
Report

Given a string str containing lower case alphabets and character ‘?’. The task is to check if it is possible to make str good or not.
A string is called good if it contains a sub-string of length 26 which has every character of lower case alphabets in it. 
The task is to check if it is possible to make the string good by replacing ‘?’ characters with any lower case alphabet. If it is possible then print the modified string otherwise print -1.

Examples: 

Input: str = “abcdefghijkl?nopqrstuvwxy?” 
Output: abcdefghijklmnopqrstuvwxyz 
Replace first ‘?’ with ‘m’ and second with ‘z’.

Input: str = “abcdefghijklmnopqrstuvwxyz??????” 
Output: abcdefghijklmnopqrstuvwxyzaaaaaa 
Given string already has a sub-string which contains all the 26 lower case alphabets. 

Approach: 

If the length of the string is less than 26 then print -1. The Task is to make a sub-string of length 26 that has all the lowercase characters. Thus, the simplest way is to iterate through all sub-strings of length 26 then for each sub-string count the number of occurrences of each alphabet, ignoring the question marks. After that, if there exists a character that occurs twice or more than this sub-string cannot contain all letters of the alphabet, and we process the next sub-string. Otherwise, we can fill in the question marks with the letters that have not appeared in the sub-string and obtain a sub-string of length 26 which contains all letters of the alphabet.

Below is the implementation of the above approach:

C++




// C++ implementation of the approach
#include <bits/stdc++.h>
using namespace std;
 
// Function that returns true if every
// lowercase character appears atmost once
bool valid(int cnt[])
{
    // every character frequency must be not
    // greater than one
    for (int i = 0; i < 26; i++) {
        if (cnt[i] >= 2)
            return false;
    }
 
    return true;
}
 
// Function that returns the modified
// good string if possible
string getGoodString(string s, int n)
{
    // If the length of the string is less than n
    if (n < 26)
        return "-1";
 
    // Sub-strings of length 26
    for (int i = 25; i < n; i++) {
 
        // To store frequency of each character
        int cnt[26] = { 0 };
 
        // Get the frequency of each character
        // in the current sub-string
        for (int j = i; j >= i - 25; j--) {
            cnt[s[j] - 'a']++;
        }
 
        // Check if we can get sub-string containing all
        // the 26 characters
        if (valid(cnt)) {
 
            // Find which character is missing
            int cur = 0;
            while (cnt[cur] > 0)
                cur++;
 
            for (int j = i - 25; j <= i; j++) {
 
                // Fill with missing characters
                if (s[j] == '?') {
                    s[j] = cur + 'a';
                    cur++;
 
                    // Find the next missing character
                    while (cnt[cur] > 0)
                        cur++;
                }
            }
 
            // Return the modified good string
            return s;
        }
    }
 
    return "-1";
}
 
// Driver code
int main()
{
    string s = "abcdefghijkl?nopqrstuvwxy?";
    int n = s.length();
 
    cout << getGoodString(s, n);
 
    return 0;
}


Java




// Java implementation of the approach
import java.util.*;
 
class GFG
{
     
// Function that returns true if every
// lowercase character appears atmost once
static boolean valid(int []cnt)
{
    // every character frequency must be not
    // greater than one
    for (int i = 0; i < 26; i++)
    {
        if (cnt[i] >= 2)
            return false;
    }
 
    return true;
}
 
// Function that returns the modified
// good string if possible
static String getGoodString(String ss, int n)
{
    char[] s=ss.toCharArray();
     
    // If the length of the string is less than n
    if (n < 26)
        return "-1";
         
    // To store frequency of each character
        int[] cnt = new int[27];
         
    // Sub-strings of length 26
    for (int i = 25; i < n; i++)
    {
 
         
 
        // Get the frequency of each character
        // in the current sub-string
        for (int j = i; j >= i - 25; j--)
        {
            if (s[j] != '?')
            cnt[((int)s[j] - (int)'a')]++;
        }
 
        // Check if we can get sub-string containing all
        // the 26 characters
        if (valid(cnt))
        {
 
            // Find which character is missing
            int cur = 0;
            while (cnt[cur] > 0)
                cur++;
 
            for (int j = i - 25; j <= i; j++)
            {
 
                // Fill with missing characters
                if (s[j] == '?')
                {
                    s[j] = (char)(cur + (int)('a'));
                    cur++;
 
                    // Find the next missing character
                    while (cnt[cur] > 0)
                        cur++;
                }
            }
 
            // Return the modified good string
            return new String(s);
        }
    }
 
    return "-1";
}
 
// Driver code
public static void main (String[] args)
{
    String s = "abcdefghijkl?nopqrstuvwxy?";
    int n = s.length();
 
    System.out.println(getGoodString(s, n));
}
}
 
// This code is contributed by chandan_jnu


Python3




# Python3 implementation of the approach
 
# Function that returns true if every
# lowercase character appears atmost once
def valid(cnt):
 
    # Every character frequency must
    # be not greater than one
    for i in range(0, 26):
        if cnt[i] >= 2:
            return False
 
    return True
 
# Function that returns the modified
# good string if possible
def getGoodString(s, n):
 
    # If the length of the string is
    # less than n
    if n < 26:
        return "-1"
 
    # Sub-strings of length 26
    for i in range(25, n):
 
        # To store frequency of each character
        cnt = [0] * 26
 
        # Get the frequency of each character
        # in the current sub-string
        for j in range(i, i - 26, -1):
            if s[j] != '?':
                cnt[ord(s[j]) - ord('a')] += 1
 
        # Check if we can get sub-string
        # containing the 26 characters all
        if valid(cnt):
 
            # Find which character is missing
            cur = 0
            while cur < 26 and cnt[cur] > 0:
                cur += 1
 
            for j in range(i - 25, i + 1):
 
                # Fill with missing characters
                if s[j] == '?':
                    s[j] = chr(cur + ord('a'))
                    cur += 1
 
                    # Find the next missing character
                    while cur < 26 and cnt[cur] > 0:
                        cur += 1
 
            # Return the modified good string
            return ''.join(s)
 
    return "-1"
 
# Driver code
if __name__ == "__main__":
 
    s = "abcdefghijkl?nopqrstuvwxy?"
    n = len(s)
 
    print(getGoodString(list(s), n))
 
# This code is contributed by Rituraj Jain


C#




// C# implementation of the approach
using System;
 
class GFG
{
     
// Function that returns true if every
// lowercase character appears atmost once
static bool valid(int []cnt)
{
    // every character frequency must be not
    // greater than one
    for (int i = 0; i < 26; i++)
    {
        if (cnt[i] >= 2)
            return false;
    }
 
    return true;
}
 
// Function that returns the modified
// good string if possible
static string getGoodString(string ss, int n)
{
    char[] s = ss.ToCharArray();
     
    // If the length of the string is less than n
    if (n < 26)
        return "-1";
         
    // To store frequency of each character
        int[] cnt = new int[27];
         
    // Sub-strings of length 26
    for (int i = 25; i < n; i++)
    {
 
         
 
        // Get the frequency of each character
        // in the current sub-string
        for (int j = i; j >= i - 25; j--)
        {
            if (s[j] != '?')
            cnt[((int)s[j] - (int)'a')]++;
        }
 
        // Check if we can get sub-string containing all
        // the 26 characters
        if (valid(cnt))
        {
 
            // Find which character is missing
            int cur = 0;
            while (cnt[cur] > 0)
                cur++;
 
            for (int j = i - 25; j <= i; j++)
            {
 
                // Fill with missing characters
                if (s[j] == '?')
                {
                    s[j] = (char)(cur + (int)('a'));
                    cur++;
 
                    // Find the next missing character
                    while (cnt[cur] > 0)
                        cur++;
                }
            }
 
            // Return the modified good string
            return new String(s);
        }
    }
 
    return "-1";
}
 
// Driver code
static void Main()
{
    string s = "abcdefghijkl?nopqrstuvwxy?";
    int n = s.Length;
 
    Console.WriteLine(getGoodString(s, n));
}
}
 
// This code is contributed by chandan_jnu


Javascript




<script>
      // JavaScript implementation of the approach
      // Function that returns true if every
      // lowercase character appears atmost once
      function valid(cnt) {
        // every character frequency must be not
        // greater than one
        for (var i = 0; i < 26; i++) {
          if (cnt[i] >= 2) return false;
        }
 
        return true;
      }
 
      // Function that returns the modified
      // good string if possible
      function getGoodString(ss, n) {
        var s = ss.split("");
        // If the length of the string is less than n
        if (n < 26) return "-1";
 
        // Sub-strings of length 26
        for (var i = 25; i < n; i++) {
          // To store frequency of each character
          var cnt = new Array(26).fill(0);
 
          // Get the frequency of each character
          // in the current sub-string
          for (var j = i; j >= i - 25; j--) {
            cnt[s[j].charCodeAt(0) - "a".charCodeAt(0)]++;
          }
 
          // Check if we can get sub-string containing all
          // the 26 characters
          if (valid(cnt)) {
            // Find which character is missing
            var cur = 0;
            while (cnt[cur] > 0) cur++;
 
            for (var j = i - 25; j <= i; j++) {
              // Fill with missing characters
              if (s[j] === "?") {
                s[j] = String.fromCharCode(cur + "a".charCodeAt(0));
                cur++;
 
                // Find the next missing character
                while (cnt[cur] > 0) cur++;
              }
            }
 
            // Return the modified good string
            return s.join("");
          }
        }
 
        return "-1";
      }
 
      // Driver code
      var s = "abcdefghijkl?nopqrstuvwxy?";
      var n = s.length;
      document.write(getGoodString(s, n));
    </script>


PHP




<?php
// PHP implementation of the approach
 
// Function that returns true if every
// lowercase character appears atmost once
function valid(&$cnt)
{
    // every character frequency must
    // be not greater than one
    for ($i = 0; $i < 26; $i++)
    {
        if ($cnt[$i] >= 2)
            return false;
    }
 
    return true;
}
 
// Function that returns the modified
// good string if possible
function getGoodString($s, $n)
{
    // If the length of the string is
    // less than n
    if ($n < 26)
        return "-1";
 
    // Sub-strings of length 26
    for ($i = 25; $i < $n; $i++)
    {
 
        // To store frequency of each character
        $cnt = array_fill(0, 26, NULL);
 
        // Get the frequency of each character
        // in the current sub-string
        for ($j = $i; $j >= $i - 25; $j--)
        {
            if ($s[$j] != '?')
            $cnt[ord($s[$j]) - ord('a')]++;
        }
 
        // Check if we can get sub-string
        // containing all the 26 characters
        if (valid($cnt))
        {
 
            // Find which character is missing
            $cur = 0;
            while ($cur < 26 && $cnt[$cur] > 0)
                $cur++;
 
            for ($j = $i - 25; $j <= $i; $j++)
            {
 
                // Fill with missing characters
                if ($s[$j] == '?')
                {
                    $s[$j] = chr($cur + ord('a'));
                    $cur++;
 
                    // Find the next missing character
                    while ($cur < 26 && $cnt[$cur] > 0)
                        $cur++;
                }
            }
 
            // Return the modified good string
            return $s;
        }
    }
 
    return "-1";
}
 
// Driver code
$s = "abcdefghijkl?nopqrstuvwxy?";
$n = strlen($s);
echo getGoodString($s, $n);
 
// This code is contributed by ita_c
?>


Output

abcdefghijklmnopqrstuvwxyz








Complexity Analysis:

  • Time Complexity: O(N2), where N is the size of the given string.
  • Auxiliary Space: O(1)

Approach – 2 :

Here is an alternate approach to the problem:

Algorithm:

  1. Traverse the string from left to right.
  2. For each position i in the string, check if there exists a substring of length 26 starting from position i that contains all lowercase English alphabets.
  3. If such a substring is found, replace all the ‘?’ characters in the substring with the missing characters such that each lowercase English alphabet appears exactly once in the substring.
  4. If no such substring is found, return -1.
     

Code:

C++




#include <bits/stdc++.h>
using namespace std;
 
string getGoodString(string s) {
    int n = s.size();
    vector<int> freq(26, 0);
 
    for (int i = 0; i < n - 25; i++) {
        bool found = true;
        fill(freq.begin(), freq.end(), 0);
         
        for (int j = i; j < i + 26; j++) {
            if (s[j] != '?') {
                freq[s[j] - 'a']++;
                if (freq[s[j] - 'a'] > 1) {
                    found = false;
                    break;
                }
            }
        }
 
        if (found) {
            int idx = 0;
            for (int j = i; j < i + 26; j++) {
                if (s[j] == '?') {
                    while (freq[idx]) {
                        idx++;
                    }
                    s[j] = idx + 'a';
                    freq[idx] = 1;
                }
            }
 
            for (int j = 0; j < n; j++) {
                if (s[j] == '?') {
                    s[j] = 'a';
                }
            }
            return s;
        }
    }
 
    return "-1";
}
 
int main() {
    string s = "abcdefghijkl?nopqrstuvwxy?";
    cout << getGoodString(s) << endl; // Output: "abcdefghijklmnopqrstuvwxyz"
    return 0;
}


Java




import java.util.Arrays;
 
public class GoodString {
    public static String getGoodString(String s) {
        int n = s.length();
        int[] freq = new int[26];
 
        for (int i = 0; i < n - 25; i++) {
            boolean found = true;
            Arrays.fill(freq, 0);
 
            for (int j = i; j < i + 26; j++) {
                if (s.charAt(j) != '?') {
                    freq[s.charAt(j) - 'a']++;
                    if (freq[s.charAt(j) - 'a'] > 1) {
                        found = false;
                        break;
                    }
                }
            }
 
            if (found) {
                int idx = 0;
                for (int j = i; j < i + 26; j++) {
                    if (s.charAt(j) == '?') {
                        while (freq[idx] > 0) {
                            idx++;
                        }
                        s = s.substring(0, j) + (char) (idx + 'a') + s.substring(j + 1);
                        freq[idx] = 1;
                    }
                }
 
                for (int j = 0; j < n; j++) {
                    if (s.charAt(j) == '?') {
                        s = s.substring(0, j) + 'a' + s.substring(j + 1);
                    }
                }
                return s;
            }
        }
 
        return "-1";
    }
 
    public static void main(String[] args) {
        String s = "abcdefghijkl?nopqrstuvwxy?";
        System.out.println(getGoodString(s)); // Output: "abcdefghijklmnopqrstuvwxyz"
    }
}


Python3




def getGoodString(s):
    n = len(s)
    freq = [0] * 26
 
    for i in range(n - 25):
        found = True
        freq = [0] * 26
 
        for j in range(i, i + 26):
            if s[j] != '?':
                freq[ord(s[j]) - ord('a')] += 1
                if freq[ord(s[j]) - ord('a')] > 1:
                    found = False
                    break
 
        if found:
            idx = 0
            for j in range(i, i + 26):
                if s[j] == '?':
                    while freq[idx]:
                        idx += 1
                    s = s[:j] + chr(idx + ord('a')) + s[j + 1:]
                    freq[idx] = 1
 
            for j in range(n):
                if s[j] == '?':
                    s = s[:j] + 'a' + s[j + 1:]
            return s
 
    return "-1"
 
# Driver code
def main():
    s = "abcdefghijkl?nopqrstuvwxy?"
    print(getGoodString(s))  # Output: "abcdefghijklmnopqrstuvwxyz"
 
if __name__ == "__main__":
    main()


C#




using System;
 
class Program
{
    // Function to get a good string by replacing '?' in the input string
    static string GetGoodString(string s)
    {
        int n = s.Length;
        int[] freq = new int[26]; // Array to keep track of the frequency of each letter
 
        // Iterate through the string with a window of size 26
        for (int i = 0; i <= n - 26; i++)
        {
            bool found = true; // Flag to check if a valid substring is found
            Array.Clear(freq, 0, freq.Length); // Clear frequency array for each new window
 
            // Check the validity of the substring
            for (int j = i; j < i + 26; j++)
            {
                if (s[j] != '?')
                {
                    freq[s[j] - 'a']++;
                    if (freq[s[j] - 'a'] > 1)
                    {
                        // If a letter repeats, the substring is not valid
                        found = false;
                        break;
                    }
                }
            }
 
            if (found)
            {
                int idx = 0;
 
                // Replace '?' with the appropriate letters to make a valid substring
                for (int j = i; j < i + 26; j++)
                {
                    if (s[j] == '?')
                    {
                        while (freq[idx] != 0)
                        {
                            idx++;
                        }
                        s = s.Substring(0, j) + (char)(idx + 'a') + s.Substring(j + 1);
                        freq[idx] = 1;
                    }
                }
 
                // Replace remaining '?' with 'a'
                for (int j = 0; j < n; j++)
                {
                    if (s[j] == '?')
                    {
                        s = s.Substring(0, j) + 'a' + s.Substring(j + 1);
                    }
                }
 
                return s;
            }
        }
 
        return "-1"; // Return -1 if no valid substring is found
    }
 
    // Main function to test the GetGoodString function
    static void Main()
    {
        string s = "abcdefghijkl?nopqrstuvwxy?";
        Console.WriteLine(GetGoodString(s));
    }
}


Javascript




// JavaScript Program for the above approach
function getGoodString(s) {
  const n = s.length;
  const freq = new Array(26).fill(0); // Array to store character frequencies
 
  for (let i = 0; i < n - 25; i++) {
    let found = true;
    freq.fill(0); // Reset character frequencies for each substring of size 26
 
    for (let j = i; j < i + 26; j++) {
      if (s[j] !== '?') {
        freq[s[j].charCodeAt() - 97]++;
        if (freq[s[j].charCodeAt() - 97] > 1) {
          found = false;
          break;
        }
      }
    }
 
    if (found) {
      let idx = 0;
      for (let j = i; j < i + 26; j++) {
        if (s[j] === '?') {
          while (freq[idx]) {
            idx++;
          }
          s = s.substring(0, j) + String.fromCharCode(idx + 97) + s.substring(j + 1);
          freq[idx] = 1;
        }
      }
 
      // Replace remaining '?' with 'a'
      for (let j = 0; j < n; j++) {
        if (s[j] === '?') {
          s = s.substring(0, j) + 'a' + s.substring(j + 1);
        }
      }
 
      return s;
    }
  }
 
  return "-1"; // No valid substring found
}
 
// Driver code
const s = "abcdefghijkl?nopqrstuvwxy?";
console.log(getGoodString(s)); // Output: "abcdefghijklmnopqrstuvwxyz"
// THIS CODE IS CONTRIBUTED BY PIYUSH AGARWAL


Output

abcdefghijklmnopqrstuvwxyz








Complexity Analysis:

  • Time Complexity: O(N2)
  • Auxiliary Space: O(1)


Last Updated : 16 Oct, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads