![]() |
VOOZH | about |
Given a matrix m[][] of dimensions N × M and an integer K, calculate XOR(i, j) which is equal to the Bitwise Xor of all elements of submatrix from indices (1, 1) to (i, j)), for every index of the matrix. The task is to find the submatrix {(1, 1), ..., (i, j)} having Kth maximum XOR(i, j) value. If multiple such submatrices exist, then print the smallest one.
Note: Consider the starting index of the matrix from (1, 1).
Examples:
Input: m[][] = {{1, 2}, {2, 3}}, K = 2
Output: 1 2
Explanation:
XOR(1, 1) : m[1][1] = 1
XOR(1, 2): m[1][1] xor m[1][2] = 3
XOR(2, 1): m[1][1] xor m[2][1] = 3
XOR(2, 2): m[1][1] xor m[1][2] xor m[2][1] xor m[2][2] = 2
Hence, the 2nd maximum value is 3 at position [1, 2].Input: m[][] = {{1, 2, 3}, {2, 2, 1}, {2, 4, 2} }, k = 1
Output: 3 2
Approach: The idea is to find XOR (i, j) using Dynamic Programming.
Below is the implementation of the above approach:
3 2
Time Complexity: O(N * M * log K)
Auxiliary Space: O(N * M)