-
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 V] Title: 요세푸스 문제 0, Time: 40 ms, Memory: 31120 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
41 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,32 @@ | ||
# [Silver V] 요세푸스 문제 0 - 11866 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/11866) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 31120 KB, 시간: 40 ms | ||
|
||
### 분류 | ||
|
||
자료 구조, 구현, 큐 | ||
|
||
### 제출 일자 | ||
|
||
2024년 6월 4일 11:29:10 | ||
|
||
### 문제 설명 | ||
|
||
<p>요세푸스 문제는 다음과 같다.</p> | ||
|
||
<p>1번부터 N번까지 N명의 사람이 원을 이루면서 앉아있고, 양의 정수 K(≤ N)가 주어진다. 이제 순서대로 K번째 사람을 제거한다. 한 사람이 제거되면 남은 사람들로 이루어진 원을 따라 이 과정을 계속해 나간다. 이 과정은 N명의 사람이 모두 제거될 때까지 계속된다. 원에서 사람들이 제거되는 순서를 (N, K)-요세푸스 순열이라고 한다. 예를 들어 (7, 3)-요세푸스 순열은 <3, 6, 2, 7, 5, 1, 4>이다.</p> | ||
|
||
<p>N과 K가 주어지면 (N, K)-요세푸스 순열을 구하는 프로그램을 작성하시오.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 N과 K가 빈 칸을 사이에 두고 순서대로 주어진다. (1 ≤ K ≤ N ≤ 1,000)</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,9 @@ | ||
N, K = map(int, input().split()) | ||
lst = [i for i in range(1, N + 1)] | ||
idx = (K - 1) % N | ||
print("<", end="") | ||
for i in range(N - 1): | ||
print("{}, ".format(lst.pop(idx)), end="") | ||
N -= 1 | ||
idx = (idx + K - 1) % N | ||
print("{}>".format(lst[0])) |