結果

問題 No.126 2基のエレベータ
ユーザー くわいくわい
提出日時 2015-09-25 00:39:38
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 822 ms / 5,000 ms
コード長 1,262 bytes
コンパイル時間 10,768 ms
コンパイル使用メモリ 260,872 KB
実行使用メモリ 63,328 KB
最終ジャッジ日時 2024-06-06 07:37:47
合計ジャッジ時間 36,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 813 ms
63,120 KB
testcase_01 AC 821 ms
63,300 KB
testcase_02 AC 822 ms
63,056 KB
testcase_03 AC 809 ms
62,972 KB
testcase_04 AC 806 ms
63,196 KB
testcase_05 AC 792 ms
63,128 KB
testcase_06 AC 797 ms
63,096 KB
testcase_07 AC 786 ms
63,132 KB
testcase_08 AC 801 ms
62,928 KB
testcase_09 AC 793 ms
62,928 KB
testcase_10 AC 795 ms
63,048 KB
testcase_11 AC 788 ms
63,160 KB
testcase_12 AC 804 ms
63,208 KB
testcase_13 AC 794 ms
63,196 KB
testcase_14 AC 811 ms
62,976 KB
testcase_15 AC 798 ms
63,164 KB
testcase_16 AC 798 ms
63,144 KB
testcase_17 AC 793 ms
63,328 KB
testcase_18 AC 786 ms
63,176 KB
testcase_19 AC 806 ms
63,016 KB
testcase_20 AC 803 ms
62,992 KB
testcase_21 AC 794 ms
62,844 KB
testcase_22 AC 809 ms
63,136 KB
testcase_23 AC 798 ms
63,176 KB
testcase_24 AC 800 ms
63,288 KB
testcase_25 AC 798 ms
62,980 KB
testcase_26 AC 794 ms
63,072 KB
testcase_27 AC 795 ms
63,164 KB
testcase_28 AC 803 ms
63,008 KB
testcase_29 AC 797 ms
63,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Problem126 {

  def proc(a: Int, b: Int, s: Int): Int = {
    val distA = Math.abs(a - s)
    val distB = Math.abs(b - s)

    val (elevator, distToCurrentFloor) = (distA, distB) match {
      case _ if s == 1 => ("A", distA) // 1階にいる
      case (0, _) => ("A", 0) // 既にAが到着している
      case (_, 0) => ("B", 0) // 既にBが到着している
      case (a, b) if a <= b => ("A", a) // Aが優先
      case (a, b) if a > b => ("B", b) // Bが来る
    }

    val distToFloor0 = (elevator, distToCurrentFloor) match {
      case ("A", _) => s // Aが来たらそのまま乗っていけばよい
      case ("B", _) if a == 0 => s + 1 // Aが下の階にある場合は、Bで1階まで行って、そこからAに乗り継ぎ
      case ("B", _) if a < s => s // Aが下の階にある場合は、そこから乗り継ぎ
      case ("B", _) if a > s => Seq((a - s) + a, s + a - 1).min // Aが上の階にある場合、そこまで行くか、1階で下押すか。
    }

    distToCurrentFloor + distToFloor0
  }

  def main(args: Array[String]) = {
    val sc = new Scanner(System.in)
    val (a, b, s) = (sc.nextInt, sc.nextInt, sc.nextInt)
    val result = proc(a, b, s)
    println(result)
  }
}
0