Given a matrix mat[][] with N rows and M columns. The task is to find the minimum number of changes required in the matrix such that every path from top left to bottom right is a palindromic path. In a path only right and bottom movements are allowed from one cell to another cell.
Examples:
Input: M = 2, N = 2, mat[M][N] = {{0, 0}, {0, 1}}
Output: 1
Explanation:
Change matrix[0][0] from 0 to 1. The two paths from (0, 0) to (1, 1) become palindromic.
Input: M = 3, N = 7, mat[M][N] = {{1, 2, 3, 4, 5, 6, 7}, {2, 2, 3, 3, 4, 3, 2}, {1, 2, 3, 2, 5, 6, 4}}
Output: 10
Naive Approach: For the Naive Approach please refer to this article.
Time Complexity: O(N^3)
Auxiliary Space: O(N)
Efficient Approach:
The following observations have to be made:
- A unique diagonal exists for every value (i+j) where i is the row index and j is the column index.
- The task reduces to selecting two diagonals, which are at the same distance from cell (0, 0) and cell (M – 1, N – 1) respectively and making all their elements equal to a single number, which is repeated most number of times in both the chosen diagonals.
- If the number of elements between cell (0, 0) and (M – 1, N – 1) are odd, then a common diagonal equidistant from both the cells exists. Elements of that diagonal need not be modified as they do not affect the palindromic arrangement of a path.
- If the numbers of cells between (0, 0) and (M – 1, N – 1) are even, no such common diagonal exists.
Follow the below steps to solve the problem:
- Create a 2D array frequency_diagonal that stores the frequency of all numbers in each chosen diagonal.
- Each diagonal can be uniquely represented as the sum of (i, j).
- Initialize a count variable that stores the count of the total number of cells where the values have to be replaced.
- Iterate over the mat[][] and increment the frequency of current element in the diagonal ((i + j) value) where it belongs to.
- Initialize a variable number_of_elements to 1, which stores the number of elements in each of the currently chosen pair of diagonals.
- Initialize start = 0 and end = M + N – 2 and repeat the steps below until start < end:
- Find the frequency of the number which appears maximum times in the two selected diagonals that are equidistant from (0, 0) and (M-1, N-1).
- Let the frequency in the above step be X. Add the value (total number of elements in the two diagonals – X) to count the minimum number of changes.
- Increment start by 1 and decrement end by 1 and if the number of elements in the current diagonal is less than the maximum possible elements in any diagonal of the matrix, then increment number_of_elements by 1.
- Print the value of total count after the above steps.
Below is the implementation of the above approach:
C++
#include <bits/stdc++.h>
using namespace std;
int MinReplacements(
int M, int N, int mat[][30])
{
int frequency_diagonal[100][10005];
memset (frequency_diagonal, 0,
sizeof (frequency_diagonal));
int answer = 0;
for ( int i = 0; i < M; i++) {
for ( int j = 0; j < N; j++) {
frequency_diagonal[i + j]
[(mat[i][j])]++;
}
}
int start = 0;
int end = M + N - 2;
int no_of_elemnts = 1;
int max_elements = min(M, N);
while (start < end) {
int X = INT_MIN;
for ( int i = 0; i <= 10000; i++) {
X = max(
X,
frequency_diagonal[start][i]
+ frequency_diagonal[end][i]);
}
answer = answer + (2 * (no_of_elemnts)) - X;
start++;
end--;
if (no_of_elemnts < max_elements)
no_of_elemnts++;
}
return answer;
}
int main()
{
int M = 3;
int N = 7;
int mat[30][30]
= { { 1, 2, 3, 4, 5, 6, 7 },
{ 2, 2, 3, 3, 4, 3, 2 },
{ 1, 2, 3, 2, 5, 6, 4 } };
cout << MinReplacements(M, N, mat)
<< endl;
}
|
Java
class GFG{
static int MinReplacements( int M, int N,
int mat[][])
{
int [][]frequency_diagonal = new int [ 100 ][ 10005 ];
int answer = 0 ;
for ( int i = 0 ; i < M; i++)
{
for ( int j = 0 ; j < N; j++)
{
frequency_diagonal[i + j][(mat[i][j])]++;
}
}
int start = 0 ;
int end = M + N - 2 ;
int no_of_elemnts = 1 ;
int max_elements = Math.min(M, N);
while (start < end)
{
int X = Integer.MIN_VALUE;
for ( int i = 0 ; i <= 10000 ; i++)
{
X = Math.max(X,
frequency_diagonal[start][i] +
frequency_diagonal[end][i]);
}
answer = answer + ( 2 * (no_of_elemnts)) - X;
start++;
end--;
if (no_of_elemnts < max_elements)
no_of_elemnts++;
}
return answer;
}
public static void main(String[] args)
{
int M = 3 ;
int N = 7 ;
int mat[][] = { { 1 , 2 , 3 , 4 , 5 , 6 , 7 },
{ 2 , 2 , 3 , 3 , 4 , 3 , 2 },
{ 1 , 2 , 3 , 2 , 5 , 6 , 4 } };
System.out.print(MinReplacements(M, N, mat) + "\n" );
}
}
|
Python3
import sys
def MinReplacements(M, N, mat):
frequency_diagonal = [[ 0 for x in range ( 10005 )]
for y in range ( 100 )];
answer = 0
for i in range (M):
for j in range (N):
frequency_diagonal[i + j][(mat[i][j])] + = 1
start = 0
end = M + N - 2
no_of_elemnts = 1
max_elements = min (M, N)
while (start < end):
X = - sys.maxsize - 1
for i in range ( 10001 ):
X = max (X,
frequency_diagonal[start][i] +
frequency_diagonal[end][i])
answer = answer + ( 2 * (no_of_elemnts)) - X
start + = 1
end - = 1
if (no_of_elemnts < max_elements):
no_of_elemnts + = 1
return answer
M = 3
N = 7
mat = [ [ 1 , 2 , 3 , 4 , 5 , 6 , 7 ],
[ 2 , 2 , 3 , 3 , 4 , 3 , 2 ],
[ 1 , 2 , 3 , 2 , 5 , 6 , 4 ] ]
print (MinReplacements(M, N, mat))
|
C#
using System;
class GFG{
static int MinReplacements( int M, int N,
int [,]mat)
{
int [,]frequency_diagonal = new int [100, 10005];
int answer = 0;
for ( int i = 0; i < M; i++)
{
for ( int j = 0; j < N; j++)
{
frequency_diagonal[i + j, mat[i, j]]++;
}
}
int start = 0;
int end = M + N - 2;
int no_of_elemnts = 1;
int max_elements = Math.Min(M, N);
while (start < end)
{
int X = int .MinValue;
for ( int i = 0; i <= 10000; i++)
{
X = Math.Max(X,
frequency_diagonal[start, i] +
frequency_diagonal[end, i]);
}
answer = answer + (2 * (no_of_elemnts)) - X;
start++;
end--;
if (no_of_elemnts < max_elements)
no_of_elemnts++;
}
return answer;
}
public static void Main(String[] args)
{
int M = 3;
int N = 7;
int [,]mat = { { 1, 2, 3, 4, 5, 6, 7 },
{ 2, 2, 3, 3, 4, 3, 2 },
{ 1, 2, 3, 2, 5, 6, 4 } };
Console.Write(MinReplacements(M, N, mat) + "\n" );
}
}
|
Javascript
<script>
function MinReplacements(M,N,mat)
{
let frequency_diagonal = new Array(100);
for (let i=0;i<100;i++)
{
frequency_diagonal[i]= new Array(10005);
for (let j=0;j<10005;j++)
{
frequency_diagonal[i][j]=0;
}
}
let answer = 0;
for (let i = 0; i < M; i++)
{
for (let j = 0; j < N; j++)
{
frequency_diagonal[i + j][(mat[i][j])]++;
}
}
let start = 0;
let end = M + N - 2;
let no_of_elemnts = 1;
let max_elements = Math.min(M, N);
while (start < end)
{
let X = Number.MIN_VALUE;
for (let i = 0; i <= 10000; i++)
{
X = Math.max(X,
frequency_diagonal[start][i] +
frequency_diagonal[end][i]);
}
answer = answer + (2 * (no_of_elemnts)) - X;
start++;
end--;
if (no_of_elemnts < max_elements)
no_of_elemnts++;
}
return answer;
}
let M = 3;
let N = 7;
let mat = [[ 1, 2, 3, 4, 5, 6, 7 ],
[ 2, 2, 3, 3, 4, 3, 2 ],
[ 1, 2, 3, 2, 5, 6, 4 ]];
document.write(MinReplacements(M, N, mat) + "<br>" );
</script>
|
Time Complexity: O(M * N), The program iterates over the matrix using two nested loops, so the time complexity of the program is O(M*N), where M is the number of rows and N is the number of columns of the matrix. In addition, it has a loop that iterates over the frequency array, which has a fixed size of 10000, so it can be considered as a constant time operation. Therefore, the overall time complexity of the program is O(M*N).
Auxiliary Space: O(M * N), The space complexity of the program is O(M*N), as the program uses a 2D array of size 100×10005 to store the frequency of each element in each diagonal. Therefore, the space complexity of the program is also linear in terms of the size of the input.