PAT——1015. 德才論
阿新 • • 發佈:2017-12-04
con pat 輸出 理論 優先 turn 升序 裝載 add
宋代史學家司馬光在《資治通鑒》中有一段著名的“德才論”:“是故才德全盡謂之聖人,才德兼亡謂之愚人,德勝才謂之君子,才勝德謂之小人。凡取人之術,茍不得聖人,君子而與之,與其得小人,不若得愚人。”
現給出一批考生的德才分數,請根據司馬光的理論給出錄取排名。
輸入格式:
輸入第1行給出3個正整數,分別為:N(<=105),即考生總數;L(>=60),為錄取最低分數線,即德分和才分均不低於L的考生才有資格被考慮錄取;H(<100),為優先錄取線——德分和才分均不低於此線的被定義為“才德全盡”,此類考生按德才總分從高到低排序;才分不到但德分到線的一類考生屬於“德勝才”,也按總分排序,但排在第一類考生之後;德才分均低於H,但是德分不低於才分的考生屬於“才德兼亡”但尚有“德勝才”者,按總分排序,但排在第二類考生之後;其他達到最低線L的考生也按總分排序,但排在第三類考生之後。
隨後N行,每行給出一位考生的信息,包括:準考證號、德分、才分,其中準考證號為8位整數,德才分為區間[0, 100]內的整數。數字間以空格分隔。
輸出格式:
輸出第1行首先給出達到最低分數線的考生人數M,隨後M行,每行按照輸入格式輸出一位考生的信息,考生按輸入中說明的規則從高到低排序。當某類考生中有多人總分相同時,按其德分降序排列;若德分也並列,則按準考證號的升序輸出。
輸入樣例:
14 60 80 10000001 64 90 10000002 90 60 10000011 85 80 10000003 85 80 10000004 80 85 10000005 82 77 10000006 83 76 10000007 90 78 10000008 75 79 10000009 59 90 10000010 88 45 10000012 80 100 10000013 90 99 10000014 66 60
輸出樣例:
12 10000013 90 99 10000012 80 100 10000003 85 80 10000011 85 80 10000004 80 85 10000007 90 78 10000006 83 76 10000005 82 77 10000002 90 60 10000014 66 60 10000008 75 79 10000001 64 90
1 package com.hone.basical; 2 3 import java.util.ArrayList; 4 import java.util.Collections; 5 import java.util.Comparator; 6 import java.util.List; 7 import java.util.Scanner;8 9 /** 10 * 原題目:https://www.patest.cn/contests/pat-b-practise/1015 11 * @author Xia 12 * 可惜運行超時 13 * 整體思路:按照題目的要求將數據分成四類,並且分別用四個容器來裝載。 14 * 然後做整體輸出。 15 */ 16 17 public class basicalLevel1015moralTalent{ 18 public static void main(String[] args){ 19 Scanner input = new Scanner(System.in); 20 21 int n = input.nextInt(); 22 int l = input.nextInt(); 23 int h = input.nextInt(); 24 25 List<Student> stuList = new ArrayList<Student>(); 26 List<Student> al1 = new ArrayList<Student>(); 27 List<Student> al2 = new ArrayList<Student>(); 28 List<Student> al3 = new ArrayList<Student>(); 29 List<Student> al4 = new ArrayList<Student>(); 30 31 for (int i = 0; i < n; i++) { 32 Student s = new Student(); 33 s.licenseNum = input.next(); 34 s.moral = input.nextInt(); 35 s.talent = input.nextInt(); 36 stuList.add(s); 37 } 38 39 //將德和才都大於l的人進行分類,分成四類。 40 for (int i = 0; i < n; i++) { 41 int d = stuList.get(i).moral; 42 int c = stuList.get(i).talent; 43 if(d>=l&&c>=l){ 44 if(d >= h&&c >= h){ 45 al1.add(stuList.get(i)); 46 }else if(d >= h&&c < h){ 47 al2.add(stuList.get(i)); 48 }else if(d < h&&c < h&&d >= c){ 49 al3.add(stuList.get(i)); 50 }else{ 51 al4.add(stuList.get(i)); 52 } 53 } 54 } 55 56 Collections.sort(al1,new Student()); 57 Collections.sort(al2,new Student()); 58 Collections.sort(al3,new Student()); 59 Collections.sort(al4,new Student()); 60 61 62 System.out.println(al1.size()+al2.size()+al3.size()+al4.size()); 63 64 for (Student student : al1) { 65 System.out.println(student.toString()); 66 } 67 for (Student student : al2) { 68 System.out.println(student.toString()); 69 } 70 for (Student student : al3) { 71 System.out.println(student.toString()); 72 } 73 for (Student student : al4) { 74 System.out.println(student.toString()); 75 } 76 77 } 78 } 79 80 81 //定義一個學生對象 82 class Student implements Comparator<Student>{ 83 String licenseNum ; 84 int moral; 85 int talent; 86 87 //重寫toString() 88 public String toString(){ 89 return licenseNum + " " + moral + " " + talent; 90 } 91 92 /** 93 * 重寫compare方法,按照從大到小的順序排序 94 */ 95 @Override 96 public int compare(Student s1, Student s2) { 97 if((s1.moral+s1.talent)!=(s2.moral+s2.talent)){ 98 return s2.moral+s2.talent-s1.moral-s1.talent; 99 }else if(s1.moral!=s2.moral){ 100 return s2.moral-s1.moral; 101 }else{ 102 return s1.licenseNum.compareTo(s2.licenseNum); 103 } 104 } 105 106 }
PAT——1015. 德才論