返回介绍

solution / 2700-2799 / 2766.Relocate Marbles / README_EN

发布于 2024-06-17 01:03:00 字数 5512 浏览 0 评论 0 收藏 0

2766. Relocate Marbles

中文文档

Description

You are given a 0-indexed integer array nums representing the initial positions of some marbles. You are also given two 0-indexed integer arrays moveFrom and moveTo of equal length.

Throughout moveFrom.length steps, you will change the positions of the marbles. On the ith step, you will move all marbles at position moveFrom[i] to position moveTo[i].

After completing all the steps, return _the sorted list of occupied positions_.

Notes:

  • We call a position occupied if there is at least one marble in that position.
  • There may be multiple marbles in a single position.

 

Example 1:

Input: nums = [1,6,7,8], moveFrom = [1,7,2], moveTo = [2,9,5]
Output: [5,6,8,9]
Explanation: Initially, the marbles are at positions 1,6,7,8.
At the i = 0th step, we move the marbles at position 1 to position 2. Then, positions 2,6,7,8 are occupied.
At the i = 1st step, we move the marbles at position 7 to position 9. Then, positions 2,6,8,9 are occupied.
At the i = 2nd step, we move the marbles at position 2 to position 5. Then, positions 5,6,8,9 are occupied.
At the end, the final positions containing at least one marbles are [5,6,8,9].

Example 2:

Input: nums = [1,1,3,3], moveFrom = [1,3], moveTo = [2,2]
Output: [2]
Explanation: Initially, the marbles are at positions [1,1,3,3].
At the i = 0th step, we move all the marbles at position 1 to position 2. Then, the marbles are at positions [2,2,3,3].
At the i = 1st step, we move all the marbles at position 3 to position 2. Then, the marbles are at positions [2,2,2,2].
Since 2 is the only occupied position, we return [2].

 

Constraints:

  • 1 <= nums.length <= 105
  • 1 <= moveFrom.length <= 105
  • moveFrom.length == moveTo.length
  • 1 <= nums[i], moveFrom[i], moveTo[i] <= 109
  • The test cases are generated such that there is at least a marble in moveFrom[i] at the moment we want to apply the ith move.

Solutions

Solution 1: Hash Table

Let's use a hash table $pos$ to record all stone positions. Initially, $pos$ contains all elements of $nums$. Then we iterate through $moveFrom$ and $moveTo$. Each time, we remove $moveFrom[i]$ from $pos$ and add $moveTo[i]$ to $pos$. Finally, we sort the elements in $pos$ and return.

The time complexity is $O(n \times \log n)$ and the space complexity is $O(n)$. Here, $n$ is the length of array $nums$.

class Solution:
  def relocateMarbles(
    self, nums: List[int], moveFrom: List[int], moveTo: List[int]
  ) -> List[int]:
    pos = set(nums)
    for f, t in zip(moveFrom, moveTo):
      pos.remove(f)
      pos.add(t)
    return sorted(pos)
class Solution {
  public List<Integer> relocateMarbles(int[] nums, int[] moveFrom, int[] moveTo) {
    Set<Integer> pos = new HashSet<>();
    for (int x : nums) {
      pos.add(x);
    }
    for (int i = 0; i < moveFrom.length; ++i) {
      pos.remove(moveFrom[i]);
      pos.add(moveTo[i]);
    }
    List<Integer> ans = new ArrayList<>(pos);
    ans.sort((a, b) -> a - b);
    return ans;
  }
}
class Solution {
public:
  vector<int> relocateMarbles(vector<int>& nums, vector<int>& moveFrom, vector<int>& moveTo) {
    unordered_set<int> pos(nums.begin(), nums.end());
    for (int i = 0; i < moveFrom.size(); ++i) {
      pos.erase(moveFrom[i]);
      pos.insert(moveTo[i]);
    }
    vector<int> ans(pos.begin(), pos.end());
    sort(ans.begin(), ans.end());
    return ans;
  }
};
func relocateMarbles(nums []int, moveFrom []int, moveTo []int) (ans []int) {
  pos := map[int]bool{}
  for _, x := range nums {
    pos[x] = true
  }
  for i, f := range moveFrom {
    t := moveTo[i]
    pos[f] = false
    pos[t] = true
  }
  for x, ok := range pos {
    if ok {
      ans = append(ans, x)
    }
  }
  sort.Ints(ans)
  return
}
function relocateMarbles(nums: number[], moveFrom: number[], moveTo: number[]): number[] {
  const pos: Set<number> = new Set(nums);
  for (let i = 0; i < moveFrom.length; i++) {
    pos.delete(moveFrom[i]);
    pos.add(moveTo[i]);
  }
  const ans = [...pos];
  ans.sort((a, b) => a - b);
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文