結果

問題 No.1 道のショートカット
ユーザー くわいくわい
提出日時 2015-11-05 14:41:57
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,151 ms / 5,000 ms
コード長 1,531 bytes
コンパイル時間 13,103 ms
コンパイル使用メモリ 275,760 KB
実行使用メモリ 73,736 KB
最終ジャッジ日時 2024-06-11 13:33:15
合計ジャッジ時間 54,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 854 ms
65,144 KB
testcase_01 AC 853 ms
64,844 KB
testcase_02 AC 853 ms
65,120 KB
testcase_03 AC 886 ms
65,148 KB
testcase_04 AC 893 ms
65,052 KB
testcase_05 AC 856 ms
65,024 KB
testcase_06 AC 862 ms
64,972 KB
testcase_07 AC 865 ms
65,228 KB
testcase_08 AC 1,035 ms
65,236 KB
testcase_09 AC 1,022 ms
65,164 KB
testcase_10 AC 1,049 ms
65,152 KB
testcase_11 AC 1,069 ms
65,240 KB
testcase_12 AC 1,151 ms
73,248 KB
testcase_13 AC 1,118 ms
73,068 KB
testcase_14 AC 884 ms
64,792 KB
testcase_15 AC 867 ms
65,148 KB
testcase_16 AC 938 ms
65,128 KB
testcase_17 AC 866 ms
64,972 KB
testcase_18 AC 911 ms
65,012 KB
testcase_19 AC 889 ms
65,052 KB
testcase_20 AC 945 ms
64,924 KB
testcase_21 AC 939 ms
64,980 KB
testcase_22 AC 888 ms
64,928 KB
testcase_23 AC 1,114 ms
73,432 KB
testcase_24 AC 1,027 ms
65,388 KB
testcase_25 AC 959 ms
65,064 KB
testcase_26 AC 919 ms
65,088 KB
testcase_27 AC 1,044 ms
65,280 KB
testcase_28 AC 863 ms
65,048 KB
testcase_29 AC 1,142 ms
73,736 KB
testcase_30 AC 966 ms
65,140 KB
testcase_31 AC 980 ms
65,128 KB
testcase_32 AC 1,021 ms
65,120 KB
testcase_33 AC 964 ms
65,252 KB
testcase_34 AC 1,048 ms
65,140 KB
testcase_35 AC 1,001 ms
65,148 KB
testcase_36 AC 1,006 ms
65,348 KB
testcase_37 AC 1,018 ms
65,292 KB
testcase_38 AC 888 ms
65,100 KB
testcase_39 AC 908 ms
65,064 KB
testcase_40 AC 969 ms
64,976 KB
testcase_41 AC 915 ms
65,096 KB
testcase_42 AC 856 ms
64,792 KB
testcase_43 AC 859 ms
65,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

import scala.collection.mutable

object Problem001 {

  case class Route(start: Int, to: Int, cost: Int, dist: Int)

  case class State(currentCity: Int, totalCost: Int, totalDist: Int)

  def proc(cityCount: Int, costLimit: Int, routeCount: Int,
           start: IndexedSeq[Int], to: IndexedSeq[Int], costs: IndexedSeq[Int], dists: IndexedSeq[Int]): Int = {

    // 町から出る道のリスト
    val routes: Map[Int, Seq[Route]] = ((0 until routeCount) map { i =>
      Route(start(i), to(i), costs(i), dists(i))
    }).groupBy(x => x.start)

    def f: (State) => Int = x => x.totalDist
    val queue = new mutable.PriorityQueue[State]()(Ordering.by(f).reverse)

    // 開始地点設定
    queue += State(1, 0, 0)

    while (queue.nonEmpty) {
      val s: State = queue.dequeue()

      if (s.currentCity == cityCount) {
        return s.totalDist
      }

      for (route <- routes.getOrElse(s.currentCity, Seq())) {
        if (s.totalCost + route.cost <= costLimit) {
          queue += State(route.to, s.totalCost + route.cost, s.totalDist + route.dist)
        }
      }
    }

    -1
  }

  def main(args: Array[String]) = {
    val sc = new Scanner(System.in)
    val N = sc.nextInt()
    val C = sc.nextInt()
    val V = sc.nextInt()
    val S = IndexedSeq.fill(V)(sc.nextInt())
    val T = IndexedSeq.fill(V)(sc.nextInt())
    val Y = IndexedSeq.fill(V)(sc.nextInt())
    val M = IndexedSeq.fill(V)(sc.nextInt())

    val result = proc(N, C, V, S, T, Y, M)
    println(result)
  }
}
0