結果

問題 No.17 2つの地点に泊まりたい
ユーザー バカらっくバカらっく
提出日時 2019-09-01 12:27:23
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 1,856 bytes
コンパイル時間 17,378 ms
コンパイル使用メモリ 447,280 KB
実行使用メモリ 58,264 KB
最終ジャッジ日時 2024-11-27 20:42:00
合計ジャッジ時間 28,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 315 ms
51,712 KB
testcase_01 AC 316 ms
51,660 KB
testcase_02 AC 318 ms
51,488 KB
testcase_03 AC 369 ms
53,352 KB
testcase_04 AC 349 ms
51,860 KB
testcase_05 AC 396 ms
53,480 KB
testcase_06 AC 371 ms
52,204 KB
testcase_07 AC 359 ms
52,312 KB
testcase_08 AC 414 ms
53,856 KB
testcase_09 AC 412 ms
53,988 KB
testcase_10 AC 390 ms
53,428 KB
testcase_11 AC 397 ms
53,564 KB
testcase_12 AC 311 ms
51,768 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 388 ms
53,380 KB
testcase_24 AC 385 ms
53,428 KB
testcase_25 AC 322 ms
51,836 KB
testcase_26 AC 410 ms
53,848 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!!.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