Skip to content
Programmingoneonone
Programmingoneonone
  • Engineering Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
    • 100+ C++ Programs
  • Solutions
    • HackerRank
      • Algorithms Solutions
      • C solutions
      • C++ solutions
      • Java solutions
      • Python solutions
    • Leetcode Solutions
    • HackerEarth Solutions
  • Work with US
Programmingoneonone
Programmingoneonone

HackerEarth Find the String problem solution

YASH PAL, 31 July 202414 February 2026
In this HackerEarth Find the String problem solution You are given a matrix of characters. The matrix has N rows and M columns. Given a string s, you have to tell if it is possible to generate that string from given matrix.
 
Rules for generating string from matrix are:
You have to pick first character of string from row 1, second character from row 2 and so on. The  character of string is to be picked from row 1, that is, you can traverse the (N + 1)th rows in a cyclic manner (row 1 comes after row N).
If an occurrence of a character is picked from a row, you cannot pick the same occurrence again from that row.
You have to print Yes if given string can be generated from matrix using the given rules, else print No.
 
 
HackerEarth Find the String problem solution

 

 

HackerEarth Find the String problem solution.

#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n,m;
string s;
cin>>n>>m;
int f[1005][26]={0};
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
char temp;
cin>>temp;
f[i][temp-'a']++;
}
}
cin>>s;
bool check=1;
for(int i=0;i<s.size() && f;i++)
{
int lev=i%n;
if(f[lev][s[i]-'a'])f[lev][s[i]-'a']--;
else check=0;
}
if(check)cout<<"Yesn";
else cout<<"Non";
}
return 0;
}
 
 
coding problems solutions HackerEarth HackerEarth

Post navigation

Previous post
Next post

Leave a Reply

Your email address will not be published. Required fields are marked *

Programmingoneonone

We at Programmingoneonone, also known as Programming101 is a learning hub of programming and other related stuff. We provide free learning tutorials/articles related to programming and other technical stuff to people who are eager to learn about it.

Pages

  • About US
  • Contact US
  • Privacy Policy

Practice

  • Java
  • C++
  • C

Follow US

  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2026 Programmingoneonone | WordPress Theme by SuperbThemes