백준_1931 회의실 배정 (그리디)Algorithm/Algorithm 문제2024. 1. 30. 14:05
Table of Contents
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Queue;
import java.util.StringTokenizer;
public class BJ_1931_회의실배정 {
public static void main(String[] args) throws IOException {
StringTokenizer st;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
Queue<Node> pQ = new PriorityQueue<>(new Comparator<Node>() {
@Override
public int compare(Node o1, Node o2) {
if(o1.e > o2.e) {
return 1;
} else if (o1.e < o2.e) {
return -1;
} else {
return o1.s - o2.s;
}
}
});
for (int i = 0; i<n; i++) {
st = new StringTokenizer(br.readLine(), " ");
pQ.add(new Node(Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken())));
}
Node nowNode;
int cnt = 0;
int end = 0;
while(!pQ.isEmpty()) {
nowNode = pQ.poll();
if(nowNode.s >= end) {
cnt++;
end = nowNode.e;
}
}
System.out.println(new StringBuilder().append(cnt));
}
static class Node{
int s;
int e;
public Node(int s, int e) {
this.s = s;
this.e = e;
}
}
}
'Algorithm > Algorithm 문제' 카테고리의 다른 글
백준_1929 소수 구하기 (에라토스테네스의 채) (1) | 2024.02.01 |
---|---|
백준_1541 잃어버린 괄호 (그리디) (0) | 2024.01.31 |
백준_1744 수 묶기 (그리디) (0) | 2024.01.29 |
백준_1715 카드 정렬하기 (그리디) (1) | 2024.01.28 |
백준_11047 동전0 (그리디) (0) | 2024.01.27 |
@kjyyjk :: 녕의 학습 기록
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!