Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- 생성자
- enum
- 상속
- abstract
- 와일드카드
- java
- 제네릭
- inheritance
- 객체 지향
- 추상화
- 프림알고리즘
- 다형성
- 열거형
- 인터페이스
- this
- 최소신장트리
- 버퍼비우기
- polymorphism
- nextInt
- Final
- Encapsulation
- python
- 17472
- 캡슐화
- 추상 클래스
- 객체지향
- 내부 클래스
- Scanner
Archives
- Today
- Total
쫑쫑이의 블로그
백준 11000 강의실 배정 Java [우선순위 큐] 본문
https://www.acmicpc.net/problem/11000
우선순위 큐를 2개 만들어 한 우선순위큐는 예제의 첫번째 값을 오름차순으로 하여 만들고
이 큐의 size가 0이 될 때 까지 반복문을 돌려
큐의 peek값보다 작거나 같은 끝나는 시간 값 큐에 있는 값들을 모두 빼고, 강의실 카운트에서 뺀다
하나씩 꺼내고 끝나는 시간 값을 다른 우선순위큐에 오름차순으로 하여 넣고,
강의실 카운트를 더한 후 강의실 최대값과 비교하여 갱신한다
import java.awt.*;
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
Queue<Point> queue = new PriorityQueue<>(((o1, o2) -> o1.x > o2.x ? 1 : -1));
Queue<Integer> end = new PriorityQueue<>();
for (int n = 0; n < N; n++) {
StringTokenizer st = new StringTokenizer(br.readLine());
queue.add(new Point(Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken())));
}
int result = 0, room = 0;
while (!queue.isEmpty()) {
while (!end.isEmpty() && queue.peek().x >= end.peek()) {
end.poll();
room--;
}
end.add(queue.poll().y);
room++;
result = Math.max(result, room);
}
System.out.println(result);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 20924 트리의 기둥과 가지 Java [DFS] (0) | 2022.11.29 |
---|---|
백준 1068 트리 Java [DFS] (0) | 2022.11.28 |
백준 7662 이중 우선순위 큐 Java [우선순위 큐] (0) | 2022.11.26 |
백준 1516 게임 개발 Java [위상정렬, DP] (0) | 2022.11.25 |
백준 11085 군사 이동 Java [분리집합 Union find] (0) | 2022.11.24 |