結果
問題 | No.90 品物の並び替え |
ユーザー | komkomh |
提出日時 | 2019-04-24 17:19:38 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 710 bytes |
コンパイル時間 | 13,715 ms |
コンパイル使用メモリ | 439,828 KB |
実行使用メモリ | 151,208 KB |
最終ジャッジ日時 | 2024-11-20 18:04:34 |
合計ジャッジ時間 | 42,207 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 360 ms
58,732 KB |
testcase_01 | AC | 4,274 ms
148,608 KB |
testcase_02 | AC | 350 ms
55,188 KB |
testcase_03 | AC | 3,417 ms
146,504 KB |
testcase_04 | AC | 3,446 ms
146,308 KB |
testcase_05 | AC | 4,410 ms
147,260 KB |
testcase_06 | AC | 4,156 ms
147,172 KB |
testcase_07 | AC | 502 ms
65,196 KB |
testcase_08 | AC | 359 ms
55,556 KB |
testcase_09 | TLE | - |
コンパイルメッセージ
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()) }