Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    2392 - Build a Matrix With Conditions\.

    Hard

    You are given a positive integer k. You are also given:

    • a 2D integer array rowConditions of size n where <code>rowConditionsi = above<sub>i</sub>, below<sub>i</sub></code>, and

    • a 2D integer array colConditions of size m where <code>colConditionsi = left<sub>i</sub>, right<sub>i</sub></code>.

    The two arrays contain integers from 1 to k.

    You have to build a k x k matrix that contains each of the numbers from 1 to k exactly once. The remaining cells should have the value 0.

    The matrix should also satisfy the following conditions:

    • The number <code>above<sub>i</sub></code> should appear in a row that is strictly above the row at which the number <code>below<sub>i</sub></code> appears for all i from 0 to n - 1.

    • The number <code>left<sub>i</sub></code> should appear in a column that is strictly left of the column at which the number <code>right<sub>i</sub></code> appears for all i from 0 to m - 1.

    Return any matrix that satisfies the conditions. If no answer exists, return an empty matrix.

    Example 1:

    Input: k = 3, rowConditions = \[\[1,2],3,2], colConditions = \[\[2,1],3,2]

    Output: [3,0,0,0,0,1,0,2,0]

    Explanation: The diagram above shows a valid example of a matrix that satisfies all the conditions.

    The row conditions are the following:

    • Number 1 is in row <ins>1</ins>, and number 2 is in row <ins>2</ins>, so 1 is above 2 in the matrix.

    • Number 3 is in row <ins>0</ins>, and number 2 is in row <ins>2</ins>, so 3 is above 2 in the matrix.

    The column conditions are the following:

    • Number 2 is in column <ins>1</ins>, and number 1 is in column <ins>2</ins>, so 2 is left of 1 in the matrix.

    • Number 3 is in column <ins>0</ins>, and number 2 is in column <ins>1</ins>, so 3 is left of 2 in the matrix.

    Note that there may be multiple correct answers.

    Example 2:

    Input: k = 3, rowConditions = \[\[1,2],2,3,3,1,2,3], colConditions = \[\[2,1]]

    Output: []

    Explanation: From the first two conditions, 3 has to be below 1 but the third conditions needs 3 to be above 1 to be satisfied.

    No matrix can satisfy all the conditions, so we return the empty matrix.

    Constraints:

    • 2 &lt;= k &lt;= 400

    • <code>1 <= rowConditions.length, colConditions.length <= 10<sup>4</sup></code>

    • rowConditions[i].length == colConditions[i].length == 2

    • <code>1 <= above<sub>i</sub>, below<sub>i</sub>, left<sub>i</sub>, right<sub>i</sub><= k</code>

    • <code>above<sub>i</sub> != below<sub>i</sub></code>

    • <code>left<sub>i</sub> != right<sub>i</sub></code>

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Array<IntArray> buildMatrix(Integer k, Array<IntArray> rowConditions, Array<IntArray> colConditions)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait