일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spotify Api
- SECS/GEM
- spring boot
- SWEA
- 회원가입
- 자바
- SECS-II
- SECS
- C++
- java
- CS
- programmers
- SW Expert Academy
- Spring
- python
- Spring JPA
- 파이썬
- Computer Science
- 백준
- MYSQL
- linux
- spotify
- 스포티파이
- 회귀
- 프로그래머스
- Baekjoon
- regression
- c
- Gem
- modern c++
Archives
- Today
- Total
비버놀로지
[BAEKJOON 백준] 1931 회의실 배정 본문
728x90
한 개의 회의실이 있는데 이를 사용하고자 하는 N개의 회의에 대하여 회의실 사용표를 만들려고 한다. 각 회의 I에 대해 시작시간과 끝나는 시간이 주어져 있고, 각 회의가 겹치지 않게 하면서 회의실을 사용할 수 있는 회의의 최대 개수를 찾아보자. 단, 회의는 한번 시작하면 중간에 중단될 수 없으며 한 회의가 끝나는 것과 동시에 다음 회의가 시작될 수 있다. 회의의 시작시간과 끝나는 시간이 같을 수도 있다. 이 경우에는 시작하자마자 끝나는 것으로 생각하면 된다.
첫째 줄에 회의의 수 N(1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N+1 줄까지 각 회의의 정보가 주어지는데 이것은 공백을 사이에 두고 회의의 시작시간과 끝나는 시간이 주어진다. 시작 시간과 끝나는 시간은 2^31-1보다 작거나 같은 자연수 또는 0이다.
MeetingTime이라는 클래스를 만들어 줘서 작성을 했다. 그 클래스에 comparable을 implements를 해줘서 정렬을 하게 작성을 했다.
그렇게 정렬된 배열을 이용을 해서 시작시간과 끝나는 시간을 계속 바꿔가면서 cnt를 올려주고, 그렇게 마지막 값까지 확인하고, cnt를 출력하게 된다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
static int from,to;
static MeetingTime[] mtList;
public static void main(String[] args) throws IOException {
BufferedReader bf=new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st=new StringTokenizer(bf.readLine()," ");
int N=Integer.parseInt(st.nextToken());
mtList=new MeetingTime[N];
for(int i=0;i<N;i++) {
st=new StringTokenizer(bf.readLine()," ");
from=Integer.parseInt(st.nextToken());
to=Integer.parseInt(st.nextToken());
mtList[i]=new MeetingTime(from,to);
}
Arrays.sort(mtList);
int cnt=1;
MeetingTime temp=mtList[0];
for(int i=1;i<N;i++) {
if(temp.to<=mtList[i].from) {
temp=mtList[i];
cnt++;
}
}
System.out.println(cnt);
}
static class MeetingTime implements Comparable<MeetingTime>{
int from,to;
public MeetingTime(int from, int to) {
super();
this.from = from;
this.to = to;
}
@Override
public int compareTo(MeetingTime o) {
// TODO Auto-generated method stub
int value =to-o.to;
if(value!=0) {
return value;
}
return from-o.from;
}
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[BAEKJOON 백준] 2178 미로 탐색 (0) | 2021.01.13 |
---|---|
[BAEKJOON 백준] 1987 알파벳 (0) | 2021.01.13 |
[BAEKJOON 백준] 1753 최단경로 (0) | 2021.01.13 |
[BAEKJOON 백준] 1715 카드 정렬하기 (0) | 2021.01.12 |
[BAEKJOON 백준] 1697 숨바꼭질 (0) | 2021.01.12 |
Comments