結果

問題 No.90 品物の並び替え
ユーザー komkomhkomkomh
提出日時 2019-04-24 17:44:17
言語 Kotlin
(1.9.23)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,135 bytes
コンパイル時間 13,999 ms
コンパイル使用メモリ 444,780 KB
実行使用メモリ 88,132 KB
最終ジャッジ日時 2024-11-20 18:05:01
合計ジャッジ時間 23,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
55,752 KB
testcase_01 AC 826 ms
88,036 KB
testcase_02 AC 312 ms
55,296 KB
testcase_03 AC 420 ms
66,924 KB
testcase_04 AC 450 ms
66,984 KB
testcase_05 AC 888 ms
87,800 KB
testcase_06 AC 699 ms
88,132 KB
testcase_07 AC 430 ms
61,460 KB
testcase_08 AC 329 ms
55,364 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

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

    fun getScore(items: IntArray): Int {
        var score = 0
        for (i in 0 until itemScores.size) {
            val item = itemScores[i]
            if (items.indexOf(item.first) < items.indexOf(item.second)) {
                score += item.third
            }
        }
        return score
    }

    fun getMaxScore(vararg items: Int): Int {
        return when (items.size >= n) {
            true -> getScore(items)
            false -> {
                var maxScore = 0
                for (i in 0..n) {
                    if (items.contains(i)) {
                        continue
                    }
                    val score = getMaxScore(*items, i)
                    if (maxScore < score) {
                        maxScore = score
                    }
                }
                maxScore
            }
        }
    }
    println(getMaxScore())
}
0