Given a room with square grids having ‘*’ and ‘.’ representing untidy and normal cells respectively. You need to find whether room can be cleaned or not. There is a machine which helps you in this task, but it is capable of cleaning only normal cell. Untidy cells cannot be cleaned with machine, until you have cleaned the normal cell in its row or column. Now, see to it whether room can be cleaned or not. The input is as follows : First line contains the size of the room. The next n lines contains description for each row where the row[i][j] is ‘‘ if it is more untidy than others else it is ‘‘ if it is normal cell. Examples:
Input : 3
.**
.**
.**
Output :Yes, the room can be cleaned.
1 1
2 1
3 1
Input :4
****
..*.
..*.
..*.
Output : house cannot be cleaned.
Approach : The minimum number of cells can be n. It is the only answer possible as it need to have an element of type ‘‘ in every different row and column. If particular column and a given row contain ‘‘ in all the cells then, it is known that the house cannot be cleaned. Traverse every row and find the ‘‘ that can be used for the machine. Use this step two times, check every column for every row and then check for every row for every column. Then check if any of the two gives answer as n. If yes then house can be cleaned otherwise not. This approach will give us the minimum answer required. In the first example the machine will clean cell (1, 1), (2, 1), (3, 1) in order to clean the entire room. In the second example every cell in the row has ‘‘ and every cell in column contains ‘‘, therefore the house cannot be cleaned. row cannot be cleaned in any way.
C++
// CPP code to find whether
// house can be cleaned or not
#include <bits/stdc++.h>
usingnamespacestd;
// Matrix A stores the string
charA[105][105];
// ans stores the pair of indices
// to be cleaned by the machine
vector<pair<int, int> > ans;
// Function for printing the
// vector of pair
voidprint()
{
cout << "Yes, the house can be"
<< " cleaned."<< endl;
for(inti = 0; i < ans.size(); i++)
cout << ans[i].first << " "
<< ans[i].second << endl;
}
// Function performing calculations
intsolve(intn)
{
// push every first cell in
// each row containing '.'
for(inti = 0; i < n; i++) {
for(intj = 0; j < n; j++) {
if(A[i][j] == '.') {
ans.push_back(make_pair(i + 1, j + 1));
break;
}
}
}
// If total number of cells are
// n then house can be cleaned
if(ans.size() == n) {
print();
return0;
}
ans.clear();
// push every first cell in
// each column containing '.'
for(inti = 0; i < n; i++) {
for(intj = 0; j < n; j++) {
if(A[j][i] == '.') {
ans.push_back(make_pair(i + 1, j + 1));
break;
}
}
}
// If total number of cells are
// n then house can be cleaned
if(ans.size() == n) {
print();
return0;
}
cout << "house cannot be cleaned."
<< endl;
}
// Driver function
intmain()
{
intn = 3;
string s = "";
s += ".**";
s += ".**";
s += ".**";
intk = 0;
// Loop to insert letters from
// string to array
for(inti = 0; i < n; i++) {
for(intj = 0; j < n; j++)
A[i][j] = s[k++];
}
solve(n);
return0;
}
Java
importjava.util.*;
classMain {
// Matrix A stores the string
staticchar[][] A = newchar[105][105];
// ans stores the pair of indices
// to be cleaned by the machine
staticArrayList<Pair<Integer, Integer>> ans = newArrayList<>();
// Function for printing the
// ArrayList of pair
staticvoidprint() {
System.out.println("Yes, the house can be cleaned.");
Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!