Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 11000] 강의실 배정 본문
반응형
#include <iostream>
#include <algorithm>
#include <queue>
using namespace std;
pair<int, int> a[200000];
priority_queue<int, vector<int>, greater<int>> pq;
bool compare(pair<int, int> a, pair<int, int> b) {
if (a.first < b.first) return 1;
if (a.first == b.first) return a.second < b.second;
return 0;
}
int main() {
int n;
cin >> n;
for (int i = 0; i < n; i++)
cin >> a[i].first >> a[i].second;
sort(a, a + n, compare);
for (int i = 0; i < n; i++) {
int end = a[i].second;
if (!pq.empty() && pq.top() <= a[i].first)
pq.pop();
pq.push(end);
}
cout << pq.size();
}
여기에 푼 로직과 똑같다.
반응형
'Data Structure & Algorithm > PS - C++' 카테고리의 다른 글
[백준 1931] 회의실 배정 (0) | 2021.04.07 |
---|---|
[백준 17509] And the Winner Is... Ourselves! (0) | 2021.04.07 |
Comments