結果
| 問題 | 
                            No.90 品物の並び替え
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2019-04-24 17:19:38 | 
| 言語 | Kotlin  (2.1.0)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 710 bytes | 
| コンパイル時間 | 13,715 ms | 
| コンパイル使用メモリ | 439,828 KB | 
| 実行使用メモリ | 151,208 KB | 
| 最終ジャッジ日時 | 2024-11-20 18:04:34 | 
| 合計ジャッジ時間 | 42,207 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 8 TLE * 1 | 
コンパイルメッセージ
Main.kt:12:78: warning: 'sumBy((T) -> Int): Int' is deprecated. Use sumOf instead.
        scores.filter { items.indexOf(it.first) < items.indexOf(it.second) }.sumBy { it.third }
                                                                             ^
Main.kt:17:97: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
            false -> (0..n).filter { !items.contains(it) }.map { getMaxScore(*items, it) }.max()!!
                                                                                                ^
            
            ソースコード
package yukicoder
fun main() {
    val (n, m) = readLine()!!.split(" ").map(String::toInt)
    val scores = mutableSetOf<Triple<Int, Int, Int>>()
    (0 until m).forEach {
        val (item1, item2, score) = readLine()!!.split(" ").map(String::toInt)
        scores.add(Triple(item1, item2, score))
    }
    fun getScore(items: IntArray): Int =
        scores.filter { items.indexOf(it.first) < items.indexOf(it.second) }.sumBy { it.third }
    fun getMaxScore(vararg items: Int): Int {
        return when (items.size >= n) {
            true -> getScore(items)
            false -> (0..n).filter { !items.contains(it) }.map { getMaxScore(*items, it) }.max()!!
        }
    }
    println(getMaxScore())
}