当前位置:   article > 正文

华为OD真题--选修课--带答案_华为od机试题库及答案

华为od机试题库及答案

2023华为OD统一考试(A+B卷)题库清单-带答案(持续更新)or2023年华为OD真题机考题库大全-带答案(持续更新)

项目描述

现有两门选修课,每门选修课都有一部分学生选修,每个学生都有选修课的成绩,需要你找出同时选修了两门选修课的学生,先按照班级进行划分,班级编号小的先输出,每个班级按照两门选修课成绩和的降序排序,成绩相同时按照学生的学号升序排序。

输入描述

第一行为第一门选修课学生的成绩

第二行为第二门选修课学生的成绩,每行数据中学生之间以英文分号分隔,每个学生的学号和成绩以英文逗号分隔,学生学号的格式为8位数字(2位院系编号+入学年份后2位+院系内部1位专业编号+所在班级3位学号),学生成绩的取值范围为[0,100]之间的整数,两门选修课选修学生数的取值范围为[1-2000]之间的整数。

输出描述

同时选修了两门选修课的学生的学号,如果没有同时选修两门选修课的学生输出NULL,否则,先按照班级划分,班级编号小的先输出,每个班级先输出班级编号(学号前五位),然后另起一行输出这个班级同时选修两门选修课的学生学号,学号按照要求排序(按照两门选修课成绩和的降序,成绩和相同时按照学号升序),学生之间以英文分号分隔。

示例1

输入:

01202021,75;01201033,95;01202008,80;01203006,90;01203088,100

01202008,70;01203088,85;01202111,80;01202021,75;01201100,88

输出:

01202

01202008;01202021

01203

01203088

说明:

同时选修了两门选修课的学生01202021、01202008、01203088,这三个学生两门选修课的成绩和分别为150、150、185, 01202021、01202008属于01202班的学生,按照成绩和降序,成绩相同时按学号升序输出的结果为01202008:01202021,01203088属于01203班的学生,按照成绩和降序,成绩相同时按学号升序输出的结果为01203088,01202的班级编号小于01203的班级编号,需要先输出。

示例2

输入:

01201022,75;01202033,95;01202018,80;01203006,90;01202066,100

01202008,70;01203102,85;01202111,80;01201021,75;01201100,88

输出:

NULL

说明:

没有同时选修了两门选修课的学生,输出NULL。

  1. public class OptionalCourse {
  2. public static void main(String[] args) {
  3. Scanner sc = new Scanner(System.in);
  4. String[] one = sc.nextLine().split(";");
  5. String [] two = sc.nextLine().split(";");
  6. student(one,two);
  7. }
  8. public static void student(String[] one,String [] two){
  9. List<StudentInfo> oneStudentInfos = new ArrayList<>();
  10. List<StudentInfo> twoStudentInfos = new ArrayList<>();
  11. List<StudentInfo> endStudentInfos = new ArrayList<>();
  12. Set<String> schoolInfo = new HashSet<>();
  13. //2门成绩的id跟分数都存在List对象中
  14. for (String s : one){
  15. String [] one1 = s.split(",");
  16. StudentInfo st = new StudentInfo(one1[0],Integer.valueOf(one1[1]));
  17. oneStudentInfos.add(st);
  18. }
  19. for (String s : two){
  20. String [] two2 = s.split(",");
  21. StudentInfo st = new StudentInfo(two2[0],Integer.valueOf(two2[1]));
  22. twoStudentInfos.add(st);
  23. }
  24. //将2门都存在成绩的学生信息统计
  25. for (int i = 0; i < oneStudentInfos.size(); i++){
  26. for (int j = 0; j < twoStudentInfos.size(); j++){
  27. if (oneStudentInfos.get(i).id.equals(twoStudentInfos.get(j).id)){
  28. int score = oneStudentInfos.get(i).score + twoStudentInfos.get(i).score;
  29. StudentInfo st = new StudentInfo(oneStudentInfos.get(i).id,score);
  30. endStudentInfos.add(st);
  31. //截取开头5位数
  32. String schoolId = oneStudentInfos.get(i).id.substring(0,5);
  33. schoolInfo.add(schoolId);
  34. }
  35. }
  36. }
  37. if (endStudentInfos.size() == 0){
  38. System.out.println("NULL");
  39. return;
  40. }
  41. //将set开头5位数排序后存在List中
  42. List<String> schoolInfos = schoolInfo.stream()
  43. .sorted(Comparator.naturalOrder())
  44. .collect(Collectors.toList());
  45. compareStudent(endStudentInfos,schoolInfos);
  46. }
  47. /**
  48. * 按照存储的开头5位数进行分类输出
  49. * @param endStudentInfos
  50. * @param schoolInfo
  51. */
  52. public static void compareStudent(List<StudentInfo> endStudentInfos,List<String> schoolInfo){
  53. Collections.sort(endStudentInfos,new StudentInfo());
  54. StringBuffer sb = new StringBuffer();
  55. for (int i = 0; i < schoolInfo.size();i++){
  56. System.out.println(schoolInfo.get(i));
  57. for (int j = 0; j < endStudentInfos.size(); j++){
  58. if (endStudentInfos.get(j).id.substring(0,5).equals(schoolInfo.get(i))){
  59. sb.append(endStudentInfos.get(j).id).append(";");
  60. }
  61. }
  62. System.out.println(sb.toString().substring(0,sb.length()-1));
  63. sb.setLength(0);
  64. }
  65. }
  66. @Data
  67. static class StudentInfo implements Comparator<StudentInfo> {
  68. String id;
  69. int score;
  70. public StudentInfo(String id, int score) {
  71. this.id = id;
  72. this.score = score;
  73. }
  74. public StudentInfo() {
  75. }
  76. @Override
  77. public int compare(StudentInfo o1, StudentInfo o2) {
  78. return Integer.valueOf(o1.id) - Integer.valueOf(o2.id);
  79. }
  80. }
  81. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/174214
推荐阅读
相关标签
  

闽ICP备14008679号