Problem Description
You are given a 0-indexed integer array mapping
which represents the mapping rule of a shuffled decimal system. mapping[i] = j
means digit i
should be mapped to digit j
in this system. The mapped value of an integer is the new integer obtained by replacing each occurrence of digit i
in the integer with mapping[i]
for all 0 <= i <= 9
. You are also given another integer array nums
. Return the array nums
sorted in non-decreasing order based on the mapped values of its elements.
Key Insights
- Each digit in the numbers from
nums
can be transformed based on themapping
array. - The transformation needs to be applied to each number, and the resulting mapped values are used for sorting.
- The sorted output must maintain the relative order of elements with the same mapped value.
- We need to handle leading zeros in the mapped values carefully.
Space and Time Complexity
Time Complexity: O(n * m), where n is the number of elements in nums
and m is the maximum number of digits in the largest number (up to 9).
Space Complexity: O(n), for storing the mapped values and the sorted output.
Solution
To solve the problem, we will:
- Create a function to compute the mapped value of each number in
nums
. - Use the
mapping
array to replace each digit in the number according to the mapping rules. - Sort the
nums
array based on the computed mapped values while maintaining the original order for elements with the same mapped value. - Return the sorted array.
We will use a list to hold the original numbers along with their mapped values for sorting.