-
Notifications
You must be signed in to change notification settings - Fork 568
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #466 from syoh0708/0x16_19700
Create 19700.cpp
- Loading branch information
Showing
1 changed file
with
39 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,45 @@ | ||
// Authored by : BaaaaaaaaaaarkingDog | ||
// Authored by : syoh0708 | ||
// Co-authored by : - | ||
// http://boj.kr/**************** | ||
// http://boj.kr/c805ab6be00244ba9b563dbec6619ca5 | ||
#include <bits/stdc++.h> | ||
|
||
using namespace std; | ||
|
||
int main(void){ | ||
int n; | ||
pair<int, int> a[500005]; | ||
|
||
int main() { | ||
ios::sync_with_stdio(0); | ||
cin.tie(0); | ||
|
||
} | ||
|
||
cin >> n; | ||
|
||
for (int i = 0; i < n; i++) | ||
cin >> a[i].first >> a[i].second; | ||
|
||
sort(a, a + n, greater<pair<int, int>>()); | ||
|
||
multiset<int> s; | ||
|
||
for (int i = 0; i < n; i++) { | ||
auto it = s.lower_bound(-a[i].second + 1); | ||
if (it == s.end()) s.insert(-1); | ||
else { | ||
int val = *it; | ||
|
||
s.erase(it); | ||
s.insert(val - 1); | ||
} | ||
} | ||
|
||
cout << s.size(); | ||
} | ||
/** | ||
* 키의 내림차순으로 정렬한 뒤 수강생을 팀에 배정하면 | ||
* 수강생 S를 인원이 n명인 팀에 배정하면 S의 등수는 (n + 1)등이 된다. | ||
* 따라서 수강생 S가 x등 안에 들고 싶다면, | ||
* 팀원이 (x - 1)명 이하인 팀이 있다면 그 중 팀원이 가장 많은 팀에 배정하고 | ||
* 팀원이 (x - 1)명 이하인 팀이 없다면 새로운 팀을 배정한다. | ||
* multiset이 기본적으로 오름차순으로 정렬되고, (x - 1)명 이하인 팀 중에서 팀원 수가 가장 많은 팀을 원하기 때문에 | ||
* 팀원 수에 -(마이너스)를 붙이고, lower_bound로 찾으면 된다. | ||
*/ |