Header Ad

HackerEarth Split houses problem solution

In this HackerEarth Split houses, problem-solution you live in a village. The village can be represented as a line that contains n grids. Each grid can be denoted as a house that is marked as H or a blank space that is marked as ..

A person lives in each house. A person can move to a grid if it is adjacent to that person. Therefore, the grid must be present on the left and right side of that person.

Now, you are required to put some fences that can be marked as B on some blank spaces so that the village can be divided into several pieces. A person cannot walk past a fence but can walk through a house. 

You are required to divide the house based on the following rules:

A person cannot reach a house that does not belong to that specific person.
The number of grids each person can reach is the same and it includes the grid in which the house is situated.
In order to show that you are enthusiastic and if there are many answers, then you are required to print the one where most fences are placed.
Your task is to decide whether there is a possible solution. Print the possible solution.


hackerEarth Split houses problem solution


HackerEarth Split houses problem solution.

#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
#include <queue>
#include <map>
#include <string.h>
#include <math.h>
#include <stdio.h>
#include <deque>
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int,int>
#define qi ios::sync_with_stdio(0)

bool debug=true;

template<typename T1,typename T2>ostream& operator<<(ostream& os,pair<T1,T2> ptt){
os<<ptt.first<<","<<ptt.second;
return os;
}
template<typename T>ostream& operator<<(ostream& os,vector<T> vt){
os<<"{";
for(int i=0;i<vt.size();i++){
os<<vt[i]<<" ";
}
os<<"}";
return os;
}

int n,m;
char s[25][25];
int dx[]={0,0,-1,1},dy[]={-1,1,0,0};

int main(int argc,char* argv[]){
cin>>n>>m;
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
cin>>s[i][j];
}
}

for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
if(s[i][j]=='H'){
for(int k=0;k<4;k++){
int nx=i+dx[k],ny=j+dy[k];
if(nx>=0 && nx<n && ny>=0 && ny<m && s[nx][ny]=='H'){
cout<<"NO";
return 0;
}
}
}
}
}

cout<<"YES"<<endl;
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
if(s[i][j]=='H'){
cout<<"H";
}else{
cout<<"B";
}
}
cout<<endl;
}
return 0;
}


Post a Comment

0 Comments