风轻云


私信TA

用户名:dotcpp0678895

访问量:1668

签 名:

等  级
排  名 1259
经  验 3038
参赛次数 0
文章发表 33
年  龄 0
在职情况 学生
学  校 广西农业职业技术大学
专  业 计算机应用工程

  自我简介:

23级带专生

解题思路:

注意事项:

参考代码:

import java.util.Comparator;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int m = sc.nextInt();
        int n = sc.nextInt();
        TreeSet<Student> set = new TreeSet<>(new Comparator<Student>() {
            @Override
            public int compare(Student o1, Student o2) {
                return o1.id - o2.id;
            }
        });
        for (int i = 0; i < m + n; i++) {
            int id = sc.nextInt();
            int score = sc.nextInt();
            set.add(new Student(id, score));
        }
        for (Student student : set) {
            System.out.println(student.id + " " + student.score);
        }
        sc.close();
    }
   
}
class Student {
    Integer id;
    Integer score;
    public Student(Integer id, Integer score) {
        this.id = id;
        this.score = score;
    }
}


 

0.0分

0 人评分

  评论区

  • «
  • »