Consider the following matrix :
0 1 1
0 1 0
1 1 0
You can see that row 1 (0-based) contains all 0’s except mat[1][1] and column 1 contains all 1’s. Hence the answer for the above case is 1.
The first line contains a single integer ‘T’ denoting the number of test cases to be run. Then the test cases follow.
The first line of each test case contains an integer N representing the number in the problem statement.
Then N lines follow, each of which contains N space-separated integers denoting the elements of the matrix.
For each test case print an integer denoting the value of K if such K exists else print -1.
Output for each test case will be printed in a separate line.
You are not required to print anything; it has already been taken care of. Just implement the function.
1 <= T <= 5
1 <= N <= 1000
0 <= Aij <= 1
Time Limit: 1sec
Approach:
For each row, we assume this to be the answer. For each number except mat[k][k] we check if it is 1 and for every number in the kth column we check if it is 1. If both the conditions match, we return this row. If no rows match we return -1.
Algorithm:
There can be at most one ‘K’ that can be qualified to be an answer. If we traverse the given matrix from a corner (preferably from top right and bottom left), we can quickly discard the complete row or complete column based on the below rules.
a) If mat[i][j] is 0 and i != j, then column j cannot be the solution.
b) If mat[i][j] is 1 and i != j, then row i cannot be the solution.
Algorithm: