結果

問題 No.17 2つの地点に泊まりたい
ユーザー バカらっくバカらっく
提出日時 2019-09-01 12:29:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 425 ms / 5,000 ms
コード長 1,878 bytes
コンパイル時間 16,121 ms
コンパイル使用メモリ 448,080 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-11-27 20:49:49
合計ジャッジ時間 27,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
51,732 KB
testcase_01 AC 317 ms
51,524 KB
testcase_02 AC 321 ms
51,716 KB
testcase_03 AC 375 ms
53,604 KB
testcase_04 AC 344 ms
51,904 KB
testcase_05 AC 408 ms
53,824 KB
testcase_06 AC 381 ms
52,120 KB
testcase_07 AC 364 ms
52,076 KB
testcase_08 AC 421 ms
54,264 KB
testcase_09 AC 425 ms
54,200 KB
testcase_10 AC 392 ms
53,572 KB
testcase_11 AC 413 ms
53,980 KB
testcase_12 AC 320 ms
51,608 KB
testcase_13 AC 323 ms
51,492 KB
testcase_14 AC 323 ms
51,376 KB
testcase_15 AC 318 ms
51,776 KB
testcase_16 AC 319 ms
51,656 KB
testcase_17 AC 327 ms
51,920 KB
testcase_18 AC 382 ms
54,396 KB
testcase_19 AC 345 ms
53,136 KB
testcase_20 AC 322 ms
51,784 KB
testcase_21 AC 327 ms
51,468 KB
testcase_22 AC 375 ms
53,624 KB
testcase_23 AC 397 ms
53,696 KB
testcase_24 AC 408 ms
54,056 KB
testcase_25 AC 330 ms
51,732 KB
testcase_26 AC 415 ms
53,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {

    val pointCount = readLine()!!.toInt()
    road = arrayOfNulls(pointCount)
    for(i in 1..pointCount) {
        feeList.add(readLine()!!.toInt())
        road[i-1] = arrayOfNulls<Int>(pointCount)
        road[i-1]!![i-1] = 0
    }
    val roadCount = readLine()!!.toInt()
    for(i in 1..roadCount) {
        val (a,b,c) = readLine()!!.split(" ").map { it.toInt() }
        road[a]!![b] = c
        road[b]!![a] = c
    }
    for(i in road.indices) {
        for(j in road.indices) {
            for(k in road.indices) {
                val express = road[j]!![k]
                road[j]!![i]?.let {
                    val part1 = it
                    road[i]!![k]?.let {
                        val part2 = it
                        express?.also {
                            if(express > part1 + part2) {
                                road[j]!![k] = part1 + part2
                            }
                        } ?: run {
                            road[j]!![k] = part1 + part2
                        }

                    }
                }
            }
        }
    }

    var ans = feeList.sum() + road.map { it!!.filter { it != null }.map { it!!.toLong() }.sum() }.sum()
    for(i in 1..pointCount - 2) {
        if(road[0]!![i] == null) {
            continue
        }
        for(j in 1..pointCount - 2) {
            if(i == j) {
                continue
            }
            if(road[i]!![j] == null) {
                continue
            }
            if(road[j]!![pointCount-1] == null) {
                continue
            }
            val subTotal = road[0]!![i]!! + feeList[i] + road[i]!![j]!! + feeList[j] + road[j]!![pointCount-1]!!
            ans = Math.min(ans, subTotal.toLong())
        }
    }
    println(ans)
}

var feeList = mutableListOf<Int>()
var road = arrayOfNulls<Array<Int?>>(0)
0