Skip to content

Latest commit

 

History

History
104 lines (65 loc) · 2.87 KB

bj1931.md

File metadata and controls

104 lines (65 loc) · 2.87 KB

회의실 배정 (1931)

난이도 : silver 2

문제

한 개의 회의실이 있는데 이를 사용하고자 하는 N개의 회의에 대하여 회의실 사용표를 만들려고 한다. 각 회의 I에 대해 시작시간과 끝나는 시간이 주어져 있고, 각 회의가 겹치지 않게 하면서 회의실을 사용할 수 있는 회의의 최대 개수를 찾아보자. 단, 회의는 한번 시작하면 중간에 중단될 수 없으며 한 회의가 끝나는 것과 동시에 다음 회의가 시작될 수 있다. 회의의 시작시간과 끝나는 시간이 같을 수도 있다. 이 경우에는 시작하자마자 끝나는 것으로 생각하면 된다.

입력

첫째 줄에 회의의 수 N(1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N+1 줄까지 각 회의의 정보가 주어지는데 이것은 공백을 사이에 두고 회의의 시작시간과 끝나는 시간이 주어진다. 시작 시간과 끝나는 시간은 231-1보다 작거나 같은 자연수 또는 0이다.

출력

첫째 줄에 최대 사용할 수 있는 회의의 최대 개수를 출력한다.

Idea

끝나는 시간을 오름차순으로 정렬한다(이 때 끝나는 시간이 같다면 시작 시간을 오름차순 정렬!). 반복문을 순회하며 (끝나는 시간 < 시작 시간) 인 회의에서 result를 1 증가 시킨다. 이런 식으로 반복하여 회의가 가능한 시간대를 전부 체크.

Code

import java.util.*;

public class Main {

    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);

        ArrayList<Pair> list = new ArrayList<>();

        int N = scanner.nextInt();

        for(int i=0;i<N;i++){
            int input1 = scanner.nextInt();
            int input2 = scanner.nextInt();
            list.add(new Pair(input1,input2));
        }

        Collections.sort(list, (o1,o2) -> {
            if(o1.getValue() > o2.getValue()){
                return 1;
            }else if(o1.getValue() < o2.getValue()){
                return -1;
            }else{
                return o1.getKey() > o2.getKey() ? 1 : -1;
            }
        });

        int i = 0;
        int result = 1;
        int currPos = list.get(0).getValue();
        while(i < N-1){

            for(int j = i+1 ;j<N;j++){

                if(list.get(j).getKey() >= currPos){
                    i = j;
                    result++;
                    currPos = list.get(i).getValue();
                    break;
                }else if(j == N-1){
                    i = j;
                }
            }
        }

        System.out.println(result);
    }

}

class Pair{
    int key;
    int value;

    public Pair(int key, int value) {
        this.key = key;
        this.value = value;
    }

    public int getKey() {
        return key;
    }

    public int getValue() {
        return value;
    }
}