結果

問題 No.1111 コード進行
ユーザー rutilicusrutilicus
提出日時 2020-10-11 11:31:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 736 ms / 2,000 ms
コード長 1,357 bytes
コンパイル時間 15,352 ms
コンパイル使用メモリ 448,620 KB
実行使用メモリ 263,584 KB
最終ジャッジ日時 2024-07-20 17:12:36
合計ジャッジ時間 36,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
51,576 KB
testcase_01 AC 270 ms
51,688 KB
testcase_02 AC 274 ms
51,668 KB
testcase_03 AC 273 ms
51,584 KB
testcase_04 AC 275 ms
51,652 KB
testcase_05 AC 292 ms
53,260 KB
testcase_06 AC 338 ms
57,664 KB
testcase_07 AC 322 ms
57,116 KB
testcase_08 AC 311 ms
53,148 KB
testcase_09 AC 326 ms
55,468 KB
testcase_10 AC 308 ms
58,028 KB
testcase_11 AC 314 ms
53,452 KB
testcase_12 AC 339 ms
57,636 KB
testcase_13 AC 329 ms
54,816 KB
testcase_14 AC 352 ms
59,836 KB
testcase_15 AC 294 ms
52,552 KB
testcase_16 AC 361 ms
58,300 KB
testcase_17 AC 314 ms
58,364 KB
testcase_18 AC 302 ms
53,152 KB
testcase_19 AC 281 ms
52,128 KB
testcase_20 AC 321 ms
53,872 KB
testcase_21 AC 284 ms
51,876 KB
testcase_22 AC 313 ms
60,544 KB
testcase_23 AC 331 ms
55,324 KB
testcase_24 AC 331 ms
55,532 KB
testcase_25 AC 348 ms
61,276 KB
testcase_26 AC 371 ms
58,496 KB
testcase_27 AC 289 ms
52,504 KB
testcase_28 AC 511 ms
182,420 KB
testcase_29 AC 384 ms
107,376 KB
testcase_30 AC 525 ms
147,264 KB
testcase_31 AC 322 ms
63,720 KB
testcase_32 AC 538 ms
147,956 KB
testcase_33 AC 530 ms
109,032 KB
testcase_34 AC 431 ms
146,872 KB
testcase_35 AC 469 ms
182,280 KB
testcase_36 AC 552 ms
183,828 KB
testcase_37 AC 394 ms
79,128 KB
testcase_38 AC 405 ms
72,392 KB
testcase_39 AC 648 ms
148,248 KB
testcase_40 AC 736 ms
204,412 KB
testcase_41 AC 509 ms
182,176 KB
testcase_42 AC 433 ms
109,380 KB
testcase_43 AC 550 ms
109,548 KB
testcase_44 AC 339 ms
73,892 KB
testcase_45 AC 432 ms
146,860 KB
testcase_46 AC 363 ms
54,376 KB
testcase_47 AC 623 ms
263,584 KB
testcase_48 AC 331 ms
56,032 KB
testcase_49 AC 311 ms
52,916 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:50:13: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(ans)
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val allCodeNum = 300

    val mod = 1000000007L

    val (n, m, k) = readInputLine().split(" ").map { it.toInt() }

    val codes = Array(allCodeNum) { mutableListOf<Pair<Int, Int>>() }

    repeat(m) {
        val (p, q, c) = readInputLine().split(" ").map { it.toInt() }
        codes[p - 1].add(Pair(q - 1, c))
    }

    // dp[step][complex][last code]
    val dp = Array(n - 1) { Array(k + 1) { LongArray(allCodeNum) } }

    for (i in 0 until allCodeNum) {
        for (c in codes[i]) {
            if (c.second <= k) {
                dp[0][c.second][c.first] += 1L
            }
        }
    }

    for (i in 0 until n - 2) {
        for (j in 0..k) {
            for (l in 0 until allCodeNum) {
                if (dp[i][j][l] != 0L) {
                    for (c in codes[l]) {
                        if (j + c.second <= k) {
                            dp[i + 1][j + c.second][c.first] += dp[i][j][l]
                            dp[i + 1][j + c.second][c.first] %= mod
                        }
                    }
                }
            }
        }
    }

    var ans = 0L

    for (i in 0 until allCodeNum) {
        ans += dp[n - 2][k][i]
        ans %= mod
    }

    builder.appendln(ans)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0