結果

問題 No.733 分身並列コーディング
ユーザー kajikaji
提出日時 2018-09-22 01:58:30
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,065 bytes
コンパイル時間 13,608 ms
コンパイル使用メモリ 447,220 KB
実行使用メモリ 163,472 KB
最終ジャッジ日時 2024-11-20 16:45:17
合計ジャッジ時間 50,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
64,760 KB
testcase_01 AC 404 ms
99,380 KB
testcase_02 AC 394 ms
68,224 KB
testcase_03 AC 391 ms
61,392 KB
testcase_04 TLE -
testcase_05 AC 1,118 ms
99,276 KB
testcase_06 AC 375 ms
57,972 KB
testcase_07 AC 1,161 ms
99,532 KB
testcase_08 AC 1,201 ms
99,280 KB
testcase_09 WA -
testcase_10 AC 1,142 ms
95,484 KB
testcase_11 AC 649 ms
95,464 KB
testcase_12 AC 677 ms
91,596 KB
testcase_13 AC 652 ms
91,496 KB
testcase_14 AC 928 ms
95,200 KB
testcase_15 AC 953 ms
94,344 KB
testcase_16 AC 716 ms
91,588 KB
testcase_17 AC 654 ms
91,140 KB
testcase_18 AC 434 ms
63,848 KB
testcase_19 AC 1,194 ms
95,544 KB
testcase_20 TLE -
testcase_21 AC 1,473 ms
97,888 KB
testcase_22 TLE -
testcase_23 AC 1,217 ms
95,556 KB
testcase_24 AC 409 ms
61,588 KB
testcase_25 AC 400 ms
61,492 KB
testcase_26 AC 393 ms
61,552 KB
testcase_27 AC 397 ms
61,212 KB
testcase_28 AC 622 ms
85,912 KB
testcase_29 AC 422 ms
61,500 KB
testcase_30 AC 420 ms
61,636 KB
testcase_31 AC 417 ms
61,636 KB
testcase_32 AC 412 ms
61,564 KB
testcase_33 AC 412 ms
61,580 KB
testcase_34 AC 412 ms
61,476 KB
testcase_35 WA -
testcase_36 AC 413 ms
61,580 KB
testcase_37 AC 411 ms
61,596 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 431 ms
63,700 KB
testcase_41 AC 415 ms
61,484 KB
testcase_42 AC 413 ms
61,732 KB
testcase_43 AC 410 ms
61,564 KB
testcase_44 WA -
testcase_45 AC 420 ms
63,792 KB
testcase_46 AC 421 ms
63,744 KB
testcase_47 AC 429 ms
63,760 KB
testcase_48 AC 430 ms
163,472 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()
    var count = 0

    for (t in T downTo 1) {
        for (i in 1..t) {
            generateSequence {
                times.combinations(i).find { it.sum() == t }
            }.forEach { c ->
                c.forEach { times.remove(it) }
                ++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(listOf()) { all, index -> all + subList(index + 1, last).combinations(n - 1).map {
                it.add(0, get(index))
                it
            } }
        }
    }
}
0