Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 1931] 회의실 배정 본문
반응형
이전에 자바로 푼적이 있어서 코드만 적어놓겠다.
compare 함수를 처음 구현해봐서 저장하는게 목적이다.
#include <iostream>
#include <algorithm>
using namespace std;
pair<int, int> a[100000];
bool compare(pair<int, int> a, pair<int, int> b) {
if (a.second < b.second)
return 1;
if (a.second == b.second)
return a.first < b.first;
return 0;
}
int main() {
int n, pre = 0, cnt = 0;
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 s = a[i].first;
int e = a[i].second;
if (pre > s) continue;
else {
cnt++;
pre = e;
}
}
cout << cnt;
}
반응형
'Data Structure & Algorithm > PS - C++' 카테고리의 다른 글
[백준 11000] 강의실 배정 (0) | 2021.04.08 |
---|---|
[백준 17509] And the Winner Is... Ourselves! (0) | 2021.04.07 |
Comments