-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver I] Title: 회의실 배정, Time: 228 ms, Memory: 51900 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
50 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# [Silver I] 회의실 배정 - 1931 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/1931) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 51900 KB, 시간: 228 ms | ||
|
||
### 분류 | ||
|
||
그리디 알고리즘, 정렬 | ||
|
||
### 제출 일자 | ||
|
||
2024년 1월 30일 21:53:33 | ||
|
||
### 문제 설명 | ||
|
||
<p>한 개의 회의실이 있는데 이를 사용하고자 하는 N개의 회의에 대하여 회의실 사용표를 만들려고 한다. 각 회의 I에 대해 시작시간과 끝나는 시간이 주어져 있고, 각 회의가 겹치지 않게 하면서 회의실을 사용할 수 있는 회의의 최대 개수를 찾아보자. 단, 회의는 한번 시작하면 중간에 중단될 수 없으며 한 회의가 끝나는 것과 동시에 다음 회의가 시작될 수 있다. 회의의 시작시간과 끝나는 시간이 같을 수도 있다. 이 경우에는 시작하자마자 끝나는 것으로 생각하면 된다.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 회의의 수 N(1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N+1 줄까지 각 회의의 정보가 주어지는데 이것은 공백을 사이에 두고 회의의 시작시간과 끝나는 시간이 주어진다. 시작 시간과 끝나는 시간은 2<sup>31</sup>-1보다 작거나 같은 자연수 또는 0이다.</p> | ||
|
||
### 출력 | ||
|
||
<p>첫째 줄에 최대 사용할 수 있는 회의의 최대 개수를 출력한다.</p> | ||
|
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# MS Copilot에게 물어본 모범 답안. 반드시 다시 풀어볼 것. - Hyeonwoo, 2024.01.30 | ||
import sys | ||
|
||
N = int(sys.stdin.readline()) | ||
meetings = [] | ||
|
||
for _ in range(N): | ||
startTime, endTime = map(int, sys.stdin.readline().split()) | ||
meetings.append((startTime, endTime)) | ||
|
||
# 끝나는 시간을 기준으로 정렬 | ||
meetings.sort(key=lambda x: (x[1], x[0])) | ||
|
||
lastEndTime = 0 | ||
meetingCount = 0 | ||
|
||
for meeting in meetings: | ||
if meeting[0] >= lastEndTime: | ||
lastEndTime = meeting[1] | ||
meetingCount += 1 | ||
|
||
print(meetingCount) |