제출 코드
- 사용 알고리즘 :
정렬
,자료구조
우선순위 큐를 사용해서, 입실 시간 순으로 예약 내역을 정렬한 후 순차적으로 퇴실시간을 큐에 담아주며 매 회차마다 이용중인 방의 개수를 셌다.
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
import java.util.*;
class Solution {
static class Room implements Comparable<Room>{
int start, end;
Room(String[] book){
this.start = changeToInt(book[0]);
this.end = changeToInt(book[1]) + 10;
}
@Override
public int compareTo(Room o) {
return this.start - o.start;
}
}
static int changeToInt(String time){
int result = 0;
String[] str = time.split(":");
for(int i=0; i<2; i++) result += Integer.parseInt(str[i]) * Math.pow(60, (i+1)%2);
return result;
}
public int solution(String[][] book_time) {
PriorityQueue<Room> booking = new PriorityQueue<Room>();
for(String[] str : book_time) booking.add(new Room(str));
PriorityQueue<Integer> queue = new PriorityQueue<Integer>();
int time=0, max=0;
while(!booking.isEmpty()){
Room now = booking.poll();
time = now.start;
while(!queue.isEmpty() && queue.peek() <= time) queue.poll();
queue.add(now.end);
max = Math.max(max, queue.size());
}
return max;
}
}