結果

問題 No.561 東京と京都
ユーザー 💕💖💞💕💖💞
提出日時 2017-09-08 18:00:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 1,090 bytes
コンパイル時間 14,347 ms
コンパイル使用メモリ 443,460 KB
実行使用メモリ 62,256 KB
最終ジャッジ日時 2024-04-30 15:41:45
合計ジャッジ時間 19,194 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 290 ms
60,460 KB
testcase_01 AC 294 ms
60,448 KB
testcase_02 AC 291 ms
60,460 KB
testcase_03 AC 310 ms
60,336 KB
testcase_04 AC 320 ms
60,528 KB
testcase_05 AC 293 ms
56,948 KB
testcase_06 AC 294 ms
57,036 KB
testcase_07 AC 300 ms
57,028 KB
testcase_08 AC 315 ms
60,660 KB
testcase_09 AC 355 ms
60,472 KB
testcase_10 AC 287 ms
60,512 KB
testcase_11 AC 295 ms
60,560 KB
testcase_12 AC 321 ms
62,256 KB
testcase_13 AC 335 ms
62,120 KB
testcase_14 AC 329 ms
62,208 KB
testcase_15 AC 335 ms
62,256 KB
testcase_16 AC 329 ms
62,208 KB
testcase_17 AC 328 ms
62,164 KB
testcase_18 AC 335 ms
62,000 KB
testcase_19 AC 326 ms
62,220 KB
testcase_20 AC 325 ms
62,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^
Main.kt:33: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 )
                                  ^

ソースコード

diff #

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 lastsAll = memo.filter { it.first == i-1 }.sortedBy { it.third * -1 }
    val lasts = when {
      lastsAll.size > 10 -> lastsAll.slice(0..9)
      else -> lastsAll
    }
    // 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 )
}
0