[백준] 일곱 난쟁이 (2309)(kotlin)

원본 문제

문제 설명

왕비를 피해 일곱 난쟁이들과 함께 평화롭게 생활하고 있던 백설공주에게 위기가 찾아왔다. 일과를 마치고 돌아온 난쟁이가 일곱 명이 아닌 아홉 명이었던 것이다.

아홉 명의 난쟁이는 모두 자신이 “백설 공주와 일곱 난쟁이”의 주인공이라고 주장했다. 뛰어난 수학적 직관력을 가지고 있던 백설공주는, 다행스럽게도 일곱 난쟁이의 키의 합이 100이 됨을 기억해 냈다.

아홉 난쟁이의 키가 주어졌을 때, 백설공주를 도와 일곱 난쟁이를 찾는 프로그램을 작성하시오.

입력

아홉 개의 줄에 걸쳐 난쟁이들의 키가 주어진다. 주어지는 키는 100을 넘지 않는 자연수이며, 아홉 난쟁이의 키는 모두 다르며, 가능한 정답이 여러 가지인 경우에는 아무거나 출력한다.

출력

일곱 난쟁이의 키를 오름차순으로 출력한다. 일곱 난쟁이를 찾을 수 없는 경우는 없다.

테스트 케이스1

입력 출력
20
7
23
19
10
15
25
8
13
7
8
10
13
19
20
23

문제 풀이1 (DFS)

import java.io.BufferedReader
import java.io.InputStreamReader\

val list: MutableList<Int> = mutableListOf()
val check: BooleanArray = BooleanArray(9)
val result: MutableList<Int> = mutableListOf()
var total: Int = 0
var count: Int = 0

fun main() = with(BufferedReader(InputStreamReader(System.`in`))) {
    repeat(9) {
        list.add(readLine().toInt())
    }

    list.sort()

    for (i in list.indices) {
        check[i] = true
        dfs(i, 0, list[i])
        if (result.size == 7) break
        else check[i] = false
    }

    result.forEach { println(it) }
}

fun dfs(start: Int, depth: Int, sum: Int) {
    if (sum >= 100 || depth >= 6) {
        if (sum == 100 && depth == 6) {
            total = sum
            count = depth
            for (i in check.indices)
                if (check[i])
                    result.add(list[i])
            return
        }
        else return
    }

    for (i in start + 1 until 9) {
        if (count == 6 || total == 100) break
        else if (depth <= 6 && sum + list[i] <= 100) {
            check[i] = true
            dfs(i, depth + 1, sum + list[i])
            check[i] = false
        }
    }
}

문제 풀이2 (Brute Force)

import java.io.BufferedReader
import java.io.InputStreamReader

fun main() = with(BufferedReader(InputStreamReader(System.`in`))) {
    var list: IntArray = IntArray(9)
    var sum: Int = 0

    repeat(9) {
        list[it] = readLine().toInt()
        sum += list[it]
    }

    list.sort()
    var check: Boolean = false

    for (i in 0 until 9) {
        if (check) break
        for (j in 0 until  9) {
            if (i == j) continue
            if (sum - list[i] - list[j] == 100) {
                list[i] = 0
                list[j] = 0
                check = true
                break
            }
        }
    }

    list
        .filter { it != 0 }
        .forEach { println(it) }
}

카테고리:

업데이트: