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
- 모던자바
- 자바
- 네트워크
- Brute-force
- Java8
- backtracking
- 프로젝트
- OS
- 프로그래머스
- Spring
- 알고리즘
- lambda
- 백트래킹
- 코틀린
- algorithm
- back-end
- java
- TDD
- 운영체제
- baekjoon
- programmers
- 스프링
- 그래프
- DFS
- DP
- kotlin
- 자료구조
- BFS
- 백준
- LEVEL2
Archives
- Today
- Total
요깨비's LAB
[백준, BackTracking, Kotlin] P.15650 N과 M 본문
import java.util.*
var N: Int = 0
var M: Int = 0
val sb = StringBuffer()
fun main() {
val scr = Scanner(System.`in`)
N = scr.nextInt()
M = scr.nextInt()
for(i in 1..N) {
val str = StringBuffer()
dfs(i, str.append(i).append(" "), 1)
}
print(sb.toString())
}
fun dfs(n:Int, str: StringBuffer,count: Int) {
if(count == M) {
sb.append(str.toString() + "\n")
return
}
val n = n+1
for(i in n..N) {
var s = StringBuffer(str.toString())
dfs(i, StringBuffer(s.append(i).append(" ")), count+1)
// dfs(i, StringBuffer(str.append(i).append(" ")), count+1)
}
}
'알고리즘(Kotlin) > Back-Tracking' 카테고리의 다른 글
[백준, Back-Tracking, Kotlin] P.4344 평균은 넘겠지 (0) | 2021.04.08 |
---|---|
[백준, BackTracking, Kotlin] P.16198 에너지 모으기 (0) | 2021.04.08 |
[백준, BackTracking, Kotlin] P.15658 연산자 끼워넣기2 (0) | 2021.04.06 |
[백준, BackTracking, Kotlin] P.2529 부등호 (0) | 2021.04.06 |
[백준, BackTracking, Kotlin] P.2580 스도쿠 (0) | 2021.03.29 |
Comments