Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    1764 - Form Array by Concatenating Subarrays of Another Array.

    Medium

    You are given a 2D integer array groups of length n. You are also given an integer array nums.

    You are asked if you can choose n disjoint subarrays from the array nums such that the <code>i<sup>th</sup></code> subarray is equal to groups[i] ( 0-indexed ), and if i &gt; 0, the <code>(i-1)<sup>th</sup></code> subarray appears before the <code>i<sup>th</sup></code> subarray in nums (i.e. the subarrays must be in the same order as groups).

    Return true if you can do this task, and false otherwise.

    Note that the subarrays are disjoint if and only if there is no index k such that nums[k] belongs to more than one subarray. A subarray is a contiguous sequence of elements within an array.

    Example 1:

    Input: groups = [1,-1,-1,3,-2,0], nums = 1,-1,0,1,-1,-1,3,-2,0

    Output: true

    Explanation: You can choose the 0<sup>th</sup> subarray as 1,-1,0, **1,-1,-1** ,3,-2,0 and the 1<sup>st</sup> one as 1,-1,0,1,-1,-1, **3,-2,0** . These subarrays are disjoint as they share no common numsk element.

    Example 2:

    Input: groups = [10,-2,1,2,3,4], nums = 1,2,3,4,10,-2

    Output: false

    Explanation: Note that choosing the subarrays **1,2,3,4** ,10,-2 and 1,2,3,4, **10,-2** is incorrect because they are not in the same order as in groups. 10,-2 must come before 1,2,3,4.

    Example 3:

    Input: groups = [1,2,3,3,4], nums = 7,7,1,2,3,4,7,7

    Output: false

    Explanation: Note that choosing the subarrays 7,7, **1,2,3** ,4,7,7 and 7,7,1,2, **3,4** ,7,7 is invalid because they are not disjoint. They share a common elements nums4 (0-indexed).

    Constraints:

    • groups.length == n

    • <code>1 <= n <= 10<sup>3</sup></code>

    • <code>1 <= groupsi.length, sum(groupsi.length) <= 10<sup>3</sup></code>

    • <code>1 <= nums.length <= 10<sup>3</sup></code>

    • <code>-10<sup>7</sup><= groupsj, numsk<= 10<sup>7</sup></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 Boolean canChoose(Array<IntArray> groups, IntArray nums)
      • Methods inherited from class java.lang.Object

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