给你一个下标从 0 开始的数组 nums
,数组中的元素都是 正 整数。请你选出两个下标 i
和 j
(i != j
),且 nums[i]
的数位和 与 nums[j]
的数位和相等。
请你找出所有满足条件的下标 i
和 j
,找出并返回 nums[i] + nums[j]
可以得到的 最大值 。
示例 1:
输入:nums = [18,43,36,13,7] 输出:54 解释:满足条件的数对 (i, j) 为: - (0, 2) ,两个数字的数位和都是 9 ,相加得到 18 + 36 = 54 。 - (1, 4) ,两个数字的数位和都是 7 ,相加得到 43 + 7 = 50 。 所以可以获得的最大和是 54 。
示例 2:
输入:nums = [10,12,19,14] 输出:-1 解释:不存在满足条件的数对,返回 -1 。
提示:
1 <= nums.length <= 105
1 <= nums[i] <= 109
方法一:哈希表 + 排序
对于数组中的每个元素,计算其数位和,将其存入哈希表
遍历哈希表
最终返回答案。
时间复杂度 nums
的长度。
方法二:哈希表(优化)
我们创建一个哈希表
我们直接对数组 nums
进行遍历,对于每个元素
最终返回答案。
时间复杂度 nums
的长度,而 nums
的最大数位和。本题中
class Solution:
def maximumSum(self, nums: List[int]) -> int:
d = defaultdict(list)
for v in nums:
x, y = v, 0
while x:
y += x % 10
x //= 10
d[y].append(v)
ans = -1
for vs in d.values():
if len(vs) > 1:
vs.sort(reverse=True)
ans = max(ans, vs[0] + vs[1])
return ans
class Solution:
def maximumSum(self, nums: List[int]) -> int:
ans = -1
d = defaultdict(int)
for v in nums:
x, y = v, 0
while x:
y += x % 10
x //= 10
if y in d:
ans = max(ans, d[y] + v)
d[y] = max(d[y], v)
return ans
class Solution {
public int maximumSum(int[] nums) {
List<Integer>[] d = new List[100];
Arrays.setAll(d, k -> new ArrayList<>());
for (int v : nums) {
int y = 0;
for (int x = v; x > 0; x /= 10) {
y += x % 10;
}
d[y].add(v);
}
int ans = -1;
for (var vs : d) {
int m = vs.size();
if (m > 1) {
Collections.sort(vs);
ans = Math.max(ans, vs.get(m - 1) + vs.get(m - 2));
}
}
return ans;
}
}
class Solution {
public int maximumSum(int[] nums) {
int ans = -1;
int[] d = new int[100];
for (int v : nums) {
int y = 0;
for (int x = v; x > 0; x /= 10) {
y += x % 10;
}
if (d[y] > 0) {
ans = Math.max(ans, d[y] + v);
}
d[y] = Math.max(d[y], v);
}
return ans;
}
}
class Solution {
public:
int maximumSum(vector<int>& nums) {
vector<vector<int>> d(100);
for (int& v : nums) {
int y = 0;
for (int x = v; x > 0; x /= 10) {
y += x % 10;
}
d[y].emplace_back(v);
}
int ans = -1;
for (auto& vs : d) {
if (vs.size() > 1) {
sort(vs.rbegin(), vs.rend());
ans = max(ans, vs[0] + vs[1]);
}
}
return ans;
}
};
class Solution {
public:
int maximumSum(vector<int>& nums) {
int ans = -1;
int d[100]{};
for (int& v : nums) {
int y = 0;
for (int x = v; x; x /= 10) {
y += x % 10;
}
if (d[y]) {
ans = max(ans, d[y] + v);
}
d[y] = max(d[y], v);
}
return ans;
}
};
func maximumSum(nums []int) int {
d := [100][]int{}
for _, v := range nums {
y := 0
for x := v; x > 0; x /= 10 {
y += x % 10
}
d[y] = append(d[y], v)
}
ans := -1
for _, vs := range d {
m := len(vs)
if m > 1 {
sort.Ints(vs)
ans = max(ans, vs[m-1]+vs[m-2])
}
}
return ans
}
func max(a, b int) int {
if a > b {
return a
}
return b
}
func maximumSum(nums []int) int {
ans := -1
d := [100]int{}
for _, v := range nums {
y := 0
for x := v; x > 0; x /= 10 {
y += x % 10
}
if d[y] > 0 {
ans = max(ans, d[y]+v)
}
d[y] = max(d[y], v)
}
return ans
}
func max(a, b int) int {
if a > b {
return a
}
return b
}