結果

問題 No.90 品物の並び替え
ユーザー komkomhkomkomh
提出日時 2019-04-25 14:19:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 3,855 ms / 5,000 ms
コード長 726 bytes
コンパイル時間 15,299 ms
コンパイル使用メモリ 440,700 KB
実行使用メモリ 151,616 KB
最終ジャッジ日時 2024-11-20 18:03:41
合計ジャッジ時間 27,823 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 355 ms
60,448 KB
testcase_01 AC 927 ms
98,192 KB
testcase_02 AC 357 ms
60,532 KB
testcase_03 AC 580 ms
77,188 KB
testcase_04 AC 568 ms
75,536 KB
testcase_05 AC 863 ms
99,252 KB
testcase_06 AC 3,855 ms
151,616 KB
testcase_07 AC 406 ms
62,952 KB
testcase_08 AC 356 ms
60,528 KB
testcase_09 AC 2,677 ms
149,156 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:12:85: warning: 'sumBy((T) -> Int): Int' is deprecated. Use sumOf instead.
        return scores.filter { itemMap.get(it.first)!! < itemMap.get(it.second)!! }.sumBy { it.third }
                                                                                    ^
Main.kt:17:98: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
        false -> (0 until n).filter { !items.contains(it) }.map { getMaxScore(*items, it) }.max()!!
                                                                                                 ^

ソースコード

diff #

package yukicoder

fun main() {
    val (n, m) = readLine()!!.split(" ").map(String::toInt)
    val scores = (0 until m).map {
        val (item1, item2, score) = readLine()!!.split(" ").map(String::toInt)
        Triple(item1, item2, score)
    }

    fun getScore(items: IntArray): Int {
        val itemMap: Map<Int, Int> = items.mapIndexed { index, i -> i to index }.toMap()
        return scores.filter { itemMap.get(it.first)!! < itemMap.get(it.second)!! }.sumBy { it.third }
    }

    fun getMaxScore(vararg items: Int): Int = when (items.size >= n) {
        true -> getScore(items)
        false -> (0 until n).filter { !items.contains(it) }.map { getMaxScore(*items, it) }.max()!!
    }
    println(getMaxScore())
}
0