結果

問題 No.4 おもりと天秤
ユーザー komkomhkomkomh
提出日時 2019-04-06 21:31:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 714 ms / 5,000 ms
コード長 1,207 bytes
コンパイル時間 11,172 ms
コンパイル使用メモリ 434,452 KB
実行使用メモリ 100,044 KB
最終ジャッジ日時 2024-11-20 17:48:38
合計ジャッジ時間 19,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
57,120 KB
testcase_01 AC 277 ms
56,956 KB
testcase_02 AC 293 ms
57,028 KB
testcase_03 AC 282 ms
56,940 KB
testcase_04 AC 303 ms
56,996 KB
testcase_05 AC 317 ms
56,984 KB
testcase_06 AC 301 ms
56,872 KB
testcase_07 AC 320 ms
57,100 KB
testcase_08 AC 298 ms
56,900 KB
testcase_09 AC 288 ms
56,976 KB
testcase_10 AC 290 ms
57,072 KB
testcase_11 AC 279 ms
57,128 KB
testcase_12 AC 282 ms
57,108 KB
testcase_13 AC 282 ms
57,000 KB
testcase_14 AC 296 ms
57,080 KB
testcase_15 AC 286 ms
57,096 KB
testcase_16 AC 278 ms
57,000 KB
testcase_17 AC 287 ms
57,016 KB
testcase_18 AC 714 ms
100,044 KB
testcase_19 AC 290 ms
57,032 KB
testcase_20 AC 299 ms
57,044 KB
testcase_21 AC 292 ms
57,028 KB
testcase_22 AC 289 ms
57,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val N: Int = readLine()!!.toInt()
    val W: List<Int> = readLine()!!.split(" ").map(String::toInt)

    val sum: Int = W.sum()
    if (sum % 2 != 0) {
        println("impossible")
        return
    }

    val halfW = sum / 2
    var cache: MutableMap<Pair<Int, Int>, Boolean> = mutableMapOf()
    fun search2(nokori: Int, index: Int): Boolean {
        val currentNokori = nokori - W[index]
        return when {
            currentNokori < 0 -> false
            currentNokori == 0 -> true
            else -> {
                for (i in index + 1 until N) {
                    val key = Pair(currentNokori, i)
                    val result = cache.get(key)?.let {
                        it
                    } ?: run {
                        val result = search2(currentNokori, i)
                        cache.put(key, result)
                        result
                    }
                    if (result) {
                        return result
                    }
                }
                false
            }
        }
    }

    when (search2(halfW, 0)) {
        true -> println("possible")
        false -> println("impossible")
    }
}
0