当前位置:网站首页>LeetCode简单题之合并相似的物品
LeetCode简单题之合并相似的物品
2022-08-10 12:05:00 【·星辰大海】
题目
给你两个二维整数数组 items1 和 items2 ,表示两个物品集合。每个数组 items 有以下特质:
items[i] = [valuei, weighti] 其中 valuei 表示第 i 件物品的 价值 ,weighti 表示第 i 件物品的 重量 。
items 中每件物品的价值都是 唯一的 。
请你返回一个二维数组 ret,其中 ret[i] = [valuei, weighti], weighti 是所有价值为 valuei 物品的 重量之和 。
注意:ret 应该按价值 升序 排序后返回。
示例 1:
输入:items1 = [[1,1],[4,5],[3,8]], items2 = [[3,1],[1,5]]
输出:[[1,6],[3,9],[4,5]]
解释:
value = 1 的物品在 items1 中 weight = 1 ,在 items2 中 weight = 5 ,总重量为 1 + 5 = 6 。
value = 3 的物品再 items1 中 weight = 8 ,在 items2 中 weight = 1 ,总重量为 8 + 1 = 9 。
value = 4 的物品在 items1 中 weight = 5 ,总重量为 5 。
所以,我们返回 [[1,6],[3,9],[4,5]] 。
示例 2:
输入:items1 = [[1,1],[3,2],[2,3]], items2 = [[2,1],[3,2],[1,3]]
输出:[[1,4],[2,4],[3,4]]
解释:
value = 1 的物品在 items1 中 weight = 1 ,在 items2 中 weight = 3 ,总重量为 1 + 3 = 4 。
value = 2 的物品在 items1 中 weight = 3 ,在 items2 中 weight = 1 ,总重量为 3 + 1 = 4 。
value = 3 的物品在 items1 中 weight = 2 ,在 items2 中 weight = 2 ,总重量为 2 + 2 = 4 。
所以,我们返回 [[1,4],[2,4],[3,4]] 。
示例 3:
输入:items1 = [[1,3],[2,2]], items2 = [[7,1],[2,2],[1,4]]
输出:[[1,7],[2,4],[7,1]]
解释:
value = 1 的物品在 items1 中 weight = 3 ,在 items2 中 weight = 4 ,总重量为 3 + 4 = 7 。
value = 2 的物品在 items1 中 weight = 2 ,在 items2 中 weight = 2 ,总重量为 2 + 2 = 4 。
value = 7 的物品在 items2 中 weight = 1 ,总重量为 1 。
所以,我们返回 [[1,7],[2,4],[7,1]] 。
提示:
1 <= items1.length, items2.length <= 1000
items1[i].length == items2[i].length == 2
1 <= valuei, weighti <= 1000
items1 中每个 valuei 都是 唯一的 。
items2 中每个 valuei 都是 唯一的 。
来源:力扣(LeetCode)
解题思路
将两个数组做成字典,其中每个数组中元素的第一个位置作为key第二个位置作为value,这样就可以直接取两个字典的并集,将存在的value都加在一起即可。
class Solution:
def mergeSimilarItems(self, items1: List[List[int]], items2: List[List[int]]) -> List[List[int]]:
items1,items2=dict(items1),dict(items2)
for i in items1.keys()|items2.keys():
items1[i]=items1.get(i,0)+items2.get(i,0)
return sorted(list(items1.items()))
边栏推荐
猜你喜欢
随机推荐
Crypto Gaming: The Future of Gaming
Hackbar 使用教程
娄底石油化工实验设计、建设规划概述
娄底农产品检验实验室建设指南盘点
iTextSharp 使用详解
Threshold-based filtering buffer management scheme in a shared buffer packet switch论文核心部分
神经网络学习-正则化
太香了!自从用了这款接口神器,我的团队效率提升了 60%!
Excel function formulas - LOOKUP function
阿里架构师整理一份企业级SSM架构实战文档,让你熟悉底层原理
十八、一起学习Lua 调试(Debug)
时间序列的数据分析(五):简单预测法
Excel函数公式大全—LOOKUP函数
Chapter 5 virtual memory
MySQL索引的B+树到底有多高?
48MySQL数据库基础
Diary 16
MySQL相关问题整理
多线程下自旋锁设计基本思想
LeetCode 82. Remove Duplicate Elements in Sorted List II