結果

問題 No.733 分身並列コーディング
ユーザー kajikaji
提出日時 2018-09-22 02:15:01
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,385 bytes
コンパイル時間 13,648 ms
コンパイル使用メモリ 450,744 KB
実行使用メモリ 173,788 KB
最終ジャッジ日時 2024-11-20 16:46:07
合計ジャッジ時間 48,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 393 ms
59,952 KB
testcase_01 AC 393 ms
92,748 KB
testcase_02 AC 402 ms
62,164 KB
testcase_03 AC 393 ms
61,368 KB
testcase_04 TLE -
testcase_05 AC 1,102 ms
103,728 KB
testcase_06 AC 370 ms
52,896 KB
testcase_07 AC 1,113 ms
103,972 KB
testcase_08 AC 1,129 ms
105,880 KB
testcase_09 WA -
testcase_10 AC 943 ms
92,080 KB
testcase_11 AC 589 ms
74,516 KB
testcase_12 AC 650 ms
86,240 KB
testcase_13 AC 659 ms
86,360 KB
testcase_14 AC 835 ms
92,464 KB
testcase_15 AC 751 ms
91,044 KB
testcase_16 AC 736 ms
86,436 KB
testcase_17 AC 667 ms
86,504 KB
testcase_18 AC 425 ms
57,620 KB
testcase_19 AC 1,000 ms
91,996 KB
testcase_20 WA -
testcase_21 AC 1,218 ms
94,076 KB
testcase_22 AC 1,449 ms
109,872 KB
testcase_23 AC 1,190 ms
94,116 KB
testcase_24 AC 405 ms
56,812 KB
testcase_25 AC 401 ms
56,840 KB
testcase_26 AC 390 ms
56,540 KB
testcase_27 AC 394 ms
56,760 KB
testcase_28 AC 655 ms
81,256 KB
testcase_29 AC 418 ms
57,300 KB
testcase_30 AC 420 ms
57,488 KB
testcase_31 AC 426 ms
57,468 KB
testcase_32 AC 408 ms
57,172 KB
testcase_33 AC 410 ms
57,080 KB
testcase_34 AC 406 ms
56,844 KB
testcase_35 WA -
testcase_36 AC 414 ms
57,168 KB
testcase_37 AC 406 ms
56,940 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 433 ms
57,948 KB
testcase_41 AC 404 ms
56,984 KB
testcase_42 AC 414 ms
57,096 KB
testcase_43 AC 416 ms
57,120 KB
testcase_44 WA -
testcase_45 AC 423 ms
57,412 KB
testcase_46 AC 424 ms
57,560 KB
testcase_47 AC 431 ms
57,816 KB
testcase_48 AC 429 ms
173,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val scanner = Scanner(System.`in`)
    
    val T = scanner.nextInt()
    val N = scanner.nextInt()

    val times = (1..N).map { scanner.nextInt() }.sortedDescending().toMutableList()
    val combinationsCache = mutableMapOf<Int, List<MutableList<Int>>>()
    var count = 0

    for (t in T downTo 1) {
        for (i in 1..t) {
            generateSequence {
                combinationsCache
                        .getOrPut(i) { times.combinations(i) }
                        .find { it.sum() == t }
            }.forEach { c ->
                c.forEach { times.remove(it) }
                combinationsCache.clear()
                ++count

                if (times.size == 0) {
                    println(count)
                    return
                }
            }
        }
    }
}

fun <T> List<T>.combinations(n: Int): List<MutableList<T>> {
    return when {
        n > size -> emptyList()
        n == 1 -> map { mutableListOf(it) }
        else -> {
            val last = size
            (0 until last).fold(emptyList()) { all, index -> 
                all + subList(index + 1, last)
                        .combinations(n - 1)
                        .map { 
                            it.add(0, get(index)) 
                            it 
                        } 
            }
        }
    }
}
0