結果

問題 No.2095 High Rise
ユーザー 箱星箱星
提出日時 2021-10-21 22:27:47
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,443 bytes
コンパイル時間 12,117 ms
コンパイル使用メモリ 456,712 KB
実行使用メモリ 100,196 KB
最終ジャッジ日時 2024-06-12 04:46:57
合計ジャッジ時間 26,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
65,752 KB
testcase_01 AC 285 ms
100,196 KB
testcase_02 AC 257 ms
58,600 KB
testcase_03 AC 290 ms
62,192 KB
testcase_04 AC 288 ms
62,172 KB
testcase_05 AC 283 ms
62,048 KB
testcase_06 AC 282 ms
62,164 KB
testcase_07 AC 283 ms
62,084 KB
testcase_08 AC 264 ms
58,632 KB
testcase_09 AC 260 ms
58,596 KB
testcase_10 AC 294 ms
62,144 KB
testcase_11 AC 292 ms
62,148 KB
testcase_12 AC 339 ms
66,352 KB
testcase_13 AC 321 ms
64,224 KB
testcase_14 AC 407 ms
77,336 KB
testcase_15 AC 355 ms
68,468 KB
testcase_16 AC 344 ms
66,476 KB
testcase_17 AC 1,254 ms
99,360 KB
testcase_18 AC 749 ms
96,056 KB
testcase_19 AC 474 ms
88,868 KB
testcase_20 AC 1,832 ms
100,140 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val m = nextInt()
    val a = Array(n) { Array(m) { nextLong() } }
    if (n == 1) {
        println(0)
        return
    }
    val dp = Array(n + 1) { Array(m) { Long.MAX_VALUE / 2 } }
    for (i in 0 until m) {
        dp[0][i] = 0
    }
    for (i in 0 until n) {
        for (j in 0 until m) {
            for (k in 0 until m) {
                if (j != k) {
                    dp[i + 1][j] = minOf(dp[i + 1][j], dp[i][k] + a[i][j] + if (i >= 1) a[i - 1][j] else 0)
                } else {
                    dp[i + 1][j] = minOf(dp[i + 1][j], dp[i][j] + a[i][j])
                }
            }
        }
    }
    println(dp[n].minOrNull()!!)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", 1.shl(26))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0