当前位置:   article > 正文

【算法题】整数对最小和_整数对最小和 java

整数对最小和 java

整数对最小和

在这里插入图片描述

package array;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors;

/**
 * 整数对最小和
 */
//  3 1 1 2
//  3 1 2 3
//  2
public class MinimumSumOfIntegers {
    public static void main(String[] args) throws IOException {
        BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
        List<String> collect1 = Arrays.stream(bf.readLine().split(" ")).toList();
        List<String> collect2 = Arrays.stream(bf.readLine().split(" ")).toList();
        int count = Integer.parseInt(bf.readLine());
        bf.close();

        // 收集数据源
        List<Integer> list1 = collect1.stream().skip(1).limit(Integer.parseInt(collect1.get(0))).map(Integer::parseInt).collect(Collectors.toList());
        List<Integer> list2 = collect2.stream().skip(1).limit(Integer.parseInt(collect2.get(0))).map(Integer::parseInt).collect(Collectors.toList());

        // 构造结果收集容器
        List<Integer> res = new ArrayList<>();

        // 逻辑处理
        for (int i = 0; i < list1.size(); i++) {
            for (int j = 0; j < list2.size(); j++) {
                int i1 = list1.get(i) + list2.get(j);
                res.add(i1);
            }
        }

        res.sort(Comparator.naturalOrder());

        // 输出结果
        int sum = res.stream().limit(count).mapToInt(Integer::intValue).sum();
        System.out.println(sum);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/615552
推荐阅读
相关标签
  

闽ICP备14008679号