- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHackerrankJava0041.java
More file actions
Latest commit
95 lines (77 loc) · 2.21 KB
/
Copy pathHackerrankJava0041.java
File metadata and controls
95 lines (77 loc) · 2.21 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
importjava.util.ArrayList;
importjava.util.Comparator;
importjava.util.List;
importjava.util.PriorityQueue;
importjava.util.Scanner;
publicclassHackerrankJava0041 {
privatestaticfinalScannerscan = newScanner(System.in);
privatestaticfinalPrioritiespriorities = newPriorities();
publicstaticvoidmain(String[] args) {
// Java Priority Queue
// https://www.hackerrank.com/challenges/java-priority-queue/problem?isFullScreen=true
inttotalEvents = Integer.parseInt(scan.nextLine());
List<String> events = newArrayList<>();
while (totalEvents-- != 0) {
Stringevent = scan.nextLine();
events.add(event);
}
List<Student> students = priorities.getStudents(events);
if (students.isEmpty()) {
System.out.println("EMPTY");
} else {
for (Studentst : students) {
System.out.println(st.getName());
}
}
}
privatestaticclassStudent {
privateintid;
privateStringname;
privatedoublecgpa;
publicStudent(intid, Stringname, doublecgpa) {
this.id = id;
this.name = name;
this.cgpa = cgpa;
}
publicintgetId() {
returnid;
}
publicStringgetName() {
returnname;
}
publicdoublegetCgpa() {
returncgpa;
}
}
privatestaticclassPriorities {
publicList<Student> getStudents(List<String> events) {
PriorityQueue<Student> priorityQueue = newPriorityQueue<>(newComparator<Student>() {
@Override
publicintcompare(Studento1, Studento2) {
if (o1.getCgpa() != o2.getCgpa()) {
returnDouble.compare(o2.getCgpa(), o1.getCgpa());
} elseif (!o1.getName().equals(o2.getName())) {
returno1.getName().compareTo(o2.getName());
} else {
returnInteger.compare(o1.getId(), o2.getId());
}
}
});
for (Stringevent : events) {
String[] eventDetail = event.split(" ");
if (eventDetail[0].equals("ENTER")) {
intid = Integer.parseInt(eventDetail[3]);
doublecgpa = Double.parseDouble(eventDetail[2]);
priorityQueue.add(newStudent(id, eventDetail[1], cgpa));
} else {
priorityQueue.poll();
}
}
List<Student> resultList = newArrayList<>();
while (!priorityQueue.isEmpty()) {
resultList.add(priorityQueue.poll());
}
returnresultList;
}
}
}