Skip to content

Commit

Permalink
[Gold III] Title: 공주님의 정원, Time: 36 ms, Memory: 3688 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
belowyoon committed Nov 5, 2023
1 parent 5ae7bec commit 0412572
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
39 changes: 39 additions & 0 deletions 백준/Gold/2457. 공주님의 정원/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# [Gold III] 공주님의 정원 - 2457

[문제 링크](https://www.acmicpc.net/problem/2457)

### 성능 요약

메모리: 3688 KB, 시간: 36 ms

### 분류

그리디 알고리즘, 정렬

### 제출 일자

2023년 11월 6일 01:01:24

### 문제 설명

<p>오늘은 공주님이 태어난 경사스러운 날이다. 왕은 이 날을 기념하기 위해 늘 꽃이 피어있는 작은 정원을 만들기로 결정했다.</p>

<p>총 N개의 꽃이 있는 데, 꽃은 모두 같은 해에 피어서 같은 해에 진다. 하나의 꽃은 피는 날과 지는 날이 정해져 있다. 예를 들어, 5월 8일 피어서 6월 13일 지는 꽃은 5월 8일부터 6월 12일까지는 꽃이 피어 있고, 6월 13일을 포함하여 이후로는 꽃을 볼 수 없다는 의미이다. (올해는 4, 6, 9, 11월은 30일까지 있고, 1, 3, 5, 7, 8, 10, 12월은 31일까지 있으며, 2월은 28일까지만 있다.)</p>

<p>이러한 N개의 꽃들 중에서 다음의 두 조건을 만족하는 꽃들을 선택하고 싶다.</p>

<ol>
<li>공주가 가장 좋아하는 계절인 3월 1일부터 11월 30일까지 매일 꽃이 한 가지 이상 피어 있도록 한다.</li>
<li>정원이 넓지 않으므로 정원에 심는 꽃들의 수를 가능한 적게 한다. </li>
</ol>

<p>N개의 꽃들 중에서 위의 두 조건을 만족하는, 즉 3월 1일부터 11월 30일까지 매일 꽃이 한 가지 이상 피어 있도록 꽃들을 선택할 때, 선택한 꽃들의 최소 개수를 출력하는 프로그램을 작성하시오. </p>

### 입력

<p>첫째 줄에는 꽃들의 총 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 다음 N개의 줄에는 각 꽃이 피는 날짜와 지는 날짜가 주어진다. 하나의 날짜는 월과 일을 나타내는 두 숫자로 표현된다. 예를 들어서, 3 8 7 31은 꽃이 3월 8일에 피어서 7월 31일에 진다는 것을 나타낸다. </p>

### 출력

<p>첫째 줄에 선택한 꽃들의 최소 개수를 출력한다. 만약 두 조건을 만족하는 꽃들을 선택할 수 없다면 0을 출력한다.</p>

44 changes: 44 additions & 0 deletions 백준/Gold/2457. 공주님의 정원/공주님의 정원.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
//freopen("input.txt", "r", stdin);

int n, t1, t2, t3, t4;
cin >> n;
vector<pair<int, int>> f;

for (int i = 0; i < n; i++){
cin >> t1 >> t2 >> t3 >> t4;
if (t1 <= 2) {
t1 = 3; t2 = 1;
}
if (t3 >= 12) {
t3 = 12; t4 = 1;
}
f.push_back({t1 * 100 + t2, t3 * 100 + t4});
}
sort(f.begin(), f.end());
int cnt = 0, current = 301, temp = 301;
bool flag = false;
for (int i = 0; i < n; i++) {
if (f[i].first > current) {
current = temp;
cnt++;
}
if (f[i].first <= current) {
temp = max(f[i].second, temp);
}
}
if (current != temp) {
current = temp;
cnt++;
}
if (current != 1201) cnt = 0;
cout << cnt;
return 0;
}

0 comments on commit 0412572

Please sign in to comment.