結果

問題 No.2095 High Rise
ユーザー 箱星箱星
提出日時 2022-09-19 18:12:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,191 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 14,387 ms
コンパイル使用メモリ 444,780 KB
実行使用メモリ 117,460 KB
最終ジャッジ日時 2024-06-12 04:50:17
合計ジャッジ時間 31,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
55,060 KB
testcase_01 AC 334 ms
55,164 KB
testcase_02 AC 318 ms
51,876 KB
testcase_03 AC 335 ms
55,180 KB
testcase_04 AC 336 ms
54,992 KB
testcase_05 AC 336 ms
55,320 KB
testcase_06 AC 335 ms
55,000 KB
testcase_07 AC 333 ms
55,124 KB
testcase_08 AC 313 ms
51,740 KB
testcase_09 AC 316 ms
51,900 KB
testcase_10 AC 337 ms
55,248 KB
testcase_11 AC 332 ms
55,116 KB
testcase_12 AC 385 ms
55,808 KB
testcase_13 AC 390 ms
55,760 KB
testcase_14 AC 442 ms
56,280 KB
testcase_15 AC 401 ms
56,016 KB
testcase_16 AC 378 ms
55,528 KB
testcase_17 AC 679 ms
75,860 KB
testcase_18 AC 621 ms
70,304 KB
testcase_19 AC 528 ms
61,660 KB
testcase_20 AC 674 ms
77,224 KB
testcase_21 AC 826 ms
92,424 KB
testcase_22 AC 1,179 ms
117,444 KB
testcase_23 AC 1,187 ms
117,428 KB
testcase_24 AC 1,179 ms
117,460 KB
testcase_25 AC 1,191 ms
117,328 KB
testcase_26 AC 1,183 ms
117,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val (n, m) = nextInts()
    val a = Array(n) { nextLongs() }
    if (n == 1) {
        println(0)
        return
    }
    val dp = Array(n + 1) { LongArray(m) { Long.MAX_VALUE / 2 } }
    for (i in 0 until m) {
        dp[0][i] = 0
    }
    for (i in 0 until n) {
        val min = dp[i].minOrNull()!!
        for (j in 0 until m) {
            if (dp[i][j] == min) {
                dp[i + 1][j] = min + a[i][j]
            } else {
                dp[i + 1][j] = minOf(min + a[i][j] + if (i >= 1) a[i - 1][j] else 0, dp[i][j] + a[i][j])
            }
        }
    }
    println(dp[n].minOrNull())
}

fun nextInts() = readln().split(" ").map { it.toInt() }
fun nextLongs() = readln().split(" ").map { it.toLong() }
0