結果

問題 No.807 umg tours
ユーザー yudedakoyudedako
提出日時 2020-08-27 13:54:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 2,113 ms / 4,000 ms
コード長 1,252 bytes
コンパイル時間 18,526 ms
コンパイル使用メモリ 460,108 KB
実行使用メモリ 130,700 KB
最終ジャッジ日時 2024-11-23 20:14:49
合計ジャッジ時間 45,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
52,384 KB
testcase_01 AC 341 ms
52,192 KB
testcase_02 AC 368 ms
52,436 KB
testcase_03 AC 375 ms
52,412 KB
testcase_04 AC 351 ms
52,332 KB
testcase_05 AC 356 ms
52,256 KB
testcase_06 AC 366 ms
52,424 KB
testcase_07 AC 360 ms
52,512 KB
testcase_08 AC 319 ms
52,020 KB
testcase_09 AC 330 ms
51,832 KB
testcase_10 AC 319 ms
51,992 KB
testcase_11 AC 1,556 ms
111,768 KB
testcase_12 AC 1,468 ms
102,468 KB
testcase_13 AC 1,592 ms
108,808 KB
testcase_14 AC 1,405 ms
105,692 KB
testcase_15 AC 1,157 ms
93,856 KB
testcase_16 AC 1,570 ms
106,976 KB
testcase_17 AC 2,014 ms
127,824 KB
testcase_18 AC 2,106 ms
126,596 KB
testcase_19 AC 1,731 ms
117,224 KB
testcase_20 AC 1,492 ms
106,692 KB
testcase_21 AC 1,649 ms
107,652 KB
testcase_22 AC 1,132 ms
94,312 KB
testcase_23 AC 1,090 ms
92,448 KB
testcase_24 AC 1,737 ms
123,032 KB
testcase_25 AC 2,113 ms
130,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*
import kotlin.collections.ArrayList


data class Road(val to: Int, val length: Int)
fun main() {
    val (n, m) = readLine()!!.trim().split(' ').map(String::toInt)
    val nodes = Array(n){ArrayList<Road>()}
    repeat(m) {
        val (a, b, c) = readLine()!!.trim().split(' ').map(String::toInt)
        nodes[a - 1].add(Road(to = b - 1, length = c))
        nodes[b - 1].add(Road(to = a - 1, length = c))
    }
    val memo = Array(2){ LongArray(n){Long.MAX_VALUE} }
    val priorityQueue = PriorityQueue<Triple<Long, Int, Int>>(compareBy(Triple<Long, *, *>::first))
    memo[0][0] = 0
    memo[1][0] = 0
    priorityQueue.add(Triple(0L, 0, 0))
    while (priorityQueue.isNotEmpty()) {
        val (len, use, pos) = priorityQueue.poll()
        if (memo[use][pos] < len) continue
        for ((next, d) in nodes[pos]) {
            if (memo[use][next] > len + d) {
                memo[use][next] = len + d
                priorityQueue.add(Triple(len + d, use, next))
            }
            if (use == 0 && memo[1][next] > len) {
                memo[1][next] = len
                priorityQueue.add(Triple(len, 1, next))
            }
        }
    }
    for (i in 0 until n){
        println(memo[0][i] + memo[1][i])
    }
}
0