結果

問題 No.848 なかよし旅行
ユーザー pekempeypekempey
提出日時 2019-07-25 06:02:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,746 ms / 2,000 ms
コード長 1,585 bytes
コンパイル時間 15,126 ms
コンパイル使用メモリ 452,260 KB
実行使用メモリ 104,220 KB
最終ジャッジ日時 2024-11-08 01:03:44
合計ジャッジ時間 42,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,746 ms
104,220 KB
testcase_01 AC 396 ms
51,708 KB
testcase_02 AC 357 ms
51,176 KB
testcase_03 AC 372 ms
51,188 KB
testcase_04 AC 377 ms
51,404 KB
testcase_05 AC 371 ms
51,096 KB
testcase_06 AC 470 ms
52,852 KB
testcase_07 AC 375 ms
51,472 KB
testcase_08 AC 508 ms
53,424 KB
testcase_09 AC 545 ms
56,572 KB
testcase_10 AC 515 ms
53,608 KB
testcase_11 AC 1,046 ms
95,540 KB
testcase_12 AC 1,141 ms
97,556 KB
testcase_13 AC 1,370 ms
98,812 KB
testcase_14 AC 817 ms
82,456 KB
testcase_15 AC 1,267 ms
97,896 KB
testcase_16 AC 1,628 ms
102,084 KB
testcase_17 AC 1,261 ms
98,960 KB
testcase_18 AC 1,059 ms
91,352 KB
testcase_19 AC 998 ms
92,436 KB
testcase_20 AC 656 ms
59,904 KB
testcase_21 AC 1,316 ms
100,692 KB
testcase_22 AC 1,367 ms
100,540 KB
testcase_23 AC 622 ms
58,580 KB
testcase_24 AC 356 ms
50,988 KB
testcase_25 AC 1,587 ms
99,932 KB
testcase_26 AC 355 ms
51,188 KB
testcase_27 AC 352 ms
51,116 KB
testcase_28 AC 357 ms
51,188 KB
testcase_29 AC 355 ms
51,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:33:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.PriorityQueue
import java.util.Scanner

data class Edge(val v: Int, val w: Long)

val INF = 1e18.toLong()

fun dijkstra(g: Array<MutableList<Edge>>, s: Int): Array<Long> {
  data class State(val d: Long, val u: Int) : Comparable<State> {
    override operator fun compareTo(other: State): Int {
      if (d != other.d) return d.compareTo(other.d)
      return u.compareTo(other.u)
    }
  }
  var q: PriorityQueue<State> = PriorityQueue()
  val n = g.size
  var dist = Array(n, {INF})
  dist[s] = 0
  q.add(State(0, s))
  while (!q.isEmpty()) {
    val (d, u) = q.remove()
    if (d > dist[u]) continue
    for (e in g[u]) {
      if (dist[e.v] > dist[u] + e.w) {
        dist[e.v] = dist[u] + e.w
        q.add(State(dist[e.v], e.v))
      }
    }
  }
  return dist
}

fun main(args: Array<String>) {
  val sc = Scanner(System.`in`)
  val N = sc.nextInt()
  val M = sc.nextInt()
  val P = sc.nextInt() - 1
  val Q = sc.nextInt() - 1
  val T = sc.nextLong()
  var g = Array(N, {mutableListOf<Edge>()})
  repeat(M) {
    val u = sc.nextInt() - 1
    val v = sc.nextInt() - 1
    val w = sc.nextLong()
    g[u].add(Edge(v, w))
    g[v].add(Edge(u, w))
  }
  val d0 = dijkstra(g, 0)
  val dp = dijkstra(g, P)
  val dq = dijkstra(g, Q)
  var ans = -INF
  if (dp[0] + dp[Q] + dq[0] <= T) {
    ans = T
  }
  for (i in 0..N-1) {
    for (j in 0..N-1) {
      if (d0[i] + d0[j] + maxOf(dp[i] + dp[j], dq[i] + dq[j]) <= T) {
        ans = maxOf(ans, T - maxOf(dp[i] + dp[j], dq[i] + dq[j]))
      }
    }
  }
  if (ans < 0L) {
    println(-1)
  } else {
    println(ans)
  }
}
0