結果

問題 No.848 なかよし旅行
ユーザー pekempeypekempey
提出日時 2019-07-25 05:47:15
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,586 bytes
コンパイル時間 14,342 ms
コンパイル使用メモリ 449,928 KB
実行使用メモリ 171,204 KB
最終ジャッジ日時 2024-11-20 19:02:26
合計ジャッジ時間 61,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 303 ms
58,844 KB
testcase_03 AC 330 ms
95,672 KB
testcase_04 AC 329 ms
64,540 KB
testcase_05 AC 327 ms
160,788 KB
testcase_06 AC 436 ms
61,404 KB
testcase_07 AC 331 ms
95,812 KB
testcase_08 AC 512 ms
69,776 KB
testcase_09 AC 576 ms
171,204 KB
testcase_10 AC 533 ms
69,200 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,610 ms
97,392 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 874 ms
95,752 KB
testcase_21 TLE -
testcase_22 AC 1,841 ms
107,864 KB
testcase_23 AC 539 ms
101,384 KB
testcase_24 AC 309 ms
62,244 KB
testcase_25 TLE -
testcase_26 AC 312 ms
55,332 KB
testcase_27 AC 312 ms
55,368 KB
testcase_28 AC 349 ms
55,400 KB
testcase_29 AC 322 ms
162,520 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