Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 프로그래머스
- DependencyInjection
- Realm
- rxswift
- MainScheduler.Instance
- MethodSwilzzling
- combine
- GCD
- swift
- gitflow
- IOS
- 오픈채팅방
- MainScheduler.asyncInstance
- cleanarchitecture
- MainScheduler
- SwiftUI
- SRP
- DynamicMemberLookup
- DiffableDataSource
- GIT
- 명품cppProgramming c++
- leetcode
- data_structure
- 코테
- CoreBluetooth
- RaceCondition
- DispatchQueue
- SeSAC
- 등굣길
- 청년취업사관학교
Archives
- Today
- Total
Do.
BOJ1158 - 요세푸스 문제, Swift 본문
https://www.acmicpc.net/problem/1158
수가 작아서, remove(at:)을 써도 되는 문제, 만약 n이 커진다면, 링크드리스트나, 다른 접근 방법 필요
func boj1158() {
let input = readLine()!.split(separator: " ").map{ Int(String($0))! }
let (n, k) = (input[0], input[1])
var arr: [Int] = .init(1...n)
var count = k - 1
var result = "<"
while arr.count > 0 {
count = count >= arr.count ? count % arr.count : count
result.write("\(arr.remove(at: count)), ")
count += (k - 1)
}
result.removeLast(2)
result.write(">")
print(result)
}
boj1158()
'Algorithm' 카테고리의 다른 글
LeetCode - Merge Two Sorted Lists, Swift (0) | 2022.03.26 |
---|---|
프로그래머스 - 등굣길, Cpp (0) | 2022.03.22 |
2022 KAKAO BLIND RECRUITMENT - 양궁대회 (0) | 2022.03.18 |
2022 KAKAO BLIND RECRUITMENT - k진수에서 소수 개수 구하기, Swift (0) | 2022.03.15 |
2022 KAKAO BLIND RECRUITMENT - 주차요금 계산하기, Swift (0) | 2022.03.14 |
Comments