알고리즘

[백준/그리디/C++] 1931번 회의실 배정 *

데메즈 2022. 9. 11. 16:56
728x90
반응형

https://www.acmicpc.net/problem/1931

 

1931번: 회의실 배정

(1,4), (5,7), (8,11), (12,14) 를 이용할 수 있다.

www.acmicpc.net

#include <iostream>
#include <algorithm>

using namespace std;
int n;
pair<int, int> s[100005]; //[end time, st time]

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0); //속도 가속화
    cin >> n;

    for(int i=0; i<n; i++)
        cin >> s[i].second >> s[i].first;
    sort(s,s+n); //끝나는 시간을 기준으로 정렬

    int ans = 0;
    int t = 0;

    for(int i=0; i<n; i++){
        if(t > s[i].second) continue; //현재 시간이 시작시간보다 뒤면 통과
        ans++; //회의 개수 추가
        t = s[i].first; //t에 종료시간 입력
    }
    cout << ans;

    return 0;
}
728x90
반응형