結果

問題 No.126 2基のエレベータ
ユーザー くわいくわい
提出日時 2015-09-25 00:39:38
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 874 ms / 5,000 ms
コード長 1,262 bytes
コンパイル時間 10,831 ms
コンパイル使用メモリ 268,040 KB
実行使用メモリ 63,144 KB
最終ジャッジ日時 2024-12-23 20:43:46
合計ジャッジ時間 38,152 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 830 ms
62,768 KB
testcase_01 AC 857 ms
63,076 KB
testcase_02 AC 836 ms
63,088 KB
testcase_03 AC 846 ms
63,144 KB
testcase_04 AC 846 ms
62,676 KB
testcase_05 AC 860 ms
62,640 KB
testcase_06 AC 857 ms
62,960 KB
testcase_07 AC 845 ms
62,488 KB
testcase_08 AC 874 ms
62,876 KB
testcase_09 AC 867 ms
62,980 KB
testcase_10 AC 864 ms
62,660 KB
testcase_11 AC 860 ms
63,048 KB
testcase_12 AC 852 ms
62,704 KB
testcase_13 AC 854 ms
63,016 KB
testcase_14 AC 843 ms
62,740 KB
testcase_15 AC 842 ms
62,920 KB
testcase_16 AC 851 ms
62,992 KB
testcase_17 AC 856 ms
62,828 KB
testcase_18 AC 845 ms
62,672 KB
testcase_19 AC 835 ms
62,996 KB
testcase_20 AC 836 ms
62,772 KB
testcase_21 AC 852 ms
63,012 KB
testcase_22 AC 843 ms
62,508 KB
testcase_23 AC 844 ms
63,048 KB
testcase_24 AC 859 ms
62,868 KB
testcase_25 AC 848 ms
62,724 KB
testcase_26 AC 855 ms
62,868 KB
testcase_27 AC 870 ms
63,008 KB
testcase_28 AC 846 ms
62,788 KB
testcase_29 AC 838 ms
62,980 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