728x90
반응형
https://www.acmicpc.net/problem/1931
#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
반응형
'알고리즘' 카테고리의 다른 글
[백준/그리디/C++] 1026번 보물 (0) | 2022.09.13 |
---|---|
[백준/그리디/C++] 2217번 로프 (0) | 2022.09.11 |
[프로그래머스/JAVA] 체육복 (0) | 2022.03.01 |
[프로그래머스/JAVA] 카펫 (0) | 2022.02.07 |
[프로그래머스/Java] 모의고사 (0) | 2022.01.20 |