Skip to content

Latest commit

 

History

History

2610_matrix

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

You are given an integer array nums. You need to create a 2D array from nums satisfying the following conditions:

The 2D array should contain only the elements of the array nums. Each row in the 2D array contains distinct integers. The number of rows in the 2D array should be minimal. Return the resulting array. If there are multiple answers, return any of them.

Note that the 2D array can have a different number of elements on each row.

Example 1:

Input: nums = [1,3,4,1,2,3,1]
Output: [[1,3,4,2],[1,3],[1]]
Explanation: We can create a 2D array that contains the following rows:
- 1,3,4,2
- 1,3
- 1
All elements of nums were used, and each row of the 2D array contains distinct integers, so it is a valid answer.
It can be shown that we cannot have less than 3 rows in a valid array.

Example 2:

Input: nums = [1,2,3,4]
Output: [[4,3,2,1]]
Explanation: All elements of the array are distinct, so we can keep all of them in the first row of the 2D array.

Constraints:

1 <= nums.length <= 200
1 <= nums[i] <= nums.length

frequency vector is initialized with a size of nums.size() + 1 to accommodate indexing from 0 to nums.size(). For each integer num in the nums vector: If the frequency of integer num (frequency[c]) is equal to or greater than the size of ans, it means we need to add a new empty subarray to the result result. The integer num is then added to the subarray in ans corresponding to its current frequency (frequency[c]). Finally, the frequency of integer num is incremented.

Complexity

  • Time complexity: O(n)

  • Space complexity: O(n)

Code

class Solution:
    def findMatrix(self, nums: List[int]) -> List[List[int]]:
        res = []
        frequency = [0] * (len(nums) + 1)

        for i in nums:
            if frequency[i] >= len(res):
                res.append([])
            res[frequency[i]].append(i)
            frequency[i] += 1

        return res
class Solution {
public:
    vector<vector<int>> findMatrix(vector<int>& nums) {
        vector<int> frequency(nums.size() + 1);
        vector<vector<int>> result;

        for (int i : nums) {
            if (frequency[i] >= result.size()) {
                result.push_back({});
            }

            result[frequency[i]].push_back(i);
            frequency[i]++;
        }

        return result;
    }
};
class Solution {
    public List<List<Integer>> findMatrix(int[] nums) {
        List<List<Integer>> res = new ArrayList<>();
        int[] frequency = new int[nums.length + 1];

        for (int i : nums) {
            if (frequency[i] >= res.size()) {
                res.add(new ArrayList<>());
            }

            res.get(frequency[i]).add(i);
            frequency[i]++;
        }

        return res;
    }
}