結果
問題 | No.561 東京と京都 |
ユーザー | 💕💖💞 |
提出日時 | 2017-09-08 17:37:32 |
言語 | Kotlin (1.9.23) |
結果 |
TLE
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 11,436 ms |
コンパイル使用メモリ | 444,996 KB |
実行使用メモリ | 678,756 KB |
最終ジャッジ日時 | 2024-11-20 11:49:02 |
合計ジャッジ時間 | 57,304 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 285 ms
60,576 KB |
testcase_01 | AC | 282 ms
94,816 KB |
testcase_02 | AC | 288 ms
63,856 KB |
testcase_03 | AC | 281 ms
60,332 KB |
testcase_04 | AC | 285 ms
92,792 KB |
testcase_05 | AC | 279 ms
62,312 KB |
testcase_06 | AC | 282 ms
368,148 KB |
testcase_07 | AC | 281 ms
368,920 KB |
testcase_08 | AC | 285 ms
60,336 KB |
testcase_09 | AC | 291 ms
94,536 KB |
testcase_10 | AC | 297 ms
63,840 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
コンパイルメッセージ
Main.kt:4:11: warning: parameter 'args' is never used fun main( args : Array<String> ) { ^ Main.kt:29:35: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Triple<Index /* = Int */, City /* = String */, Money /* = Int */> println( memo.maxBy { it.third }!!.third ) ^
ソースコード
typealias Money = Int typealias Index = Int typealias City = String fun main( args : Array<String> ) { val (n, d) = readLine()!!.split(" ").map { it.toInt() } val tk = (1..n).map { val (t,k) = readLine()!!.split(" ").map { it.toInt() } Pair( Pair("T", t), Pair("K", k) ) } val memo = mutableListOf<Triple<Index, City, Money>>( Triple(-1, "T", 0) ) tk.mapIndexed { i, tk_ -> // search lastindex val lasts = memo.filter { it.first == i-1 } // build next divercity val (tokyo, kyoto) = tk_ lasts.map { last -> if( last.second == tokyo.first ) { memo.add( Triple(i, "T", last.third + tokyo.second) ) memo.add( Triple(i, "K", last.third + kyoto.second - d) ) } if( last.second == kyoto.first ) { memo.add( Triple(i, "T", last.third + tokyo.second - d) ) memo.add( Triple(i, "K", last.third + kyoto.second) ) } } } println( memo.maxBy { it.third }!!.third ) }