結果

問題 No.472 平均順位
ユーザー htkbhtkb
提出日時 2018-06-05 09:00:56
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 627 bytes
コンパイル時間 12,355 ms
コンパイル使用メモリ 446,948 KB
実行使用メモリ 96,272 KB
最終ジャッジ日時 2024-11-20 16:04:51
合計ジャッジ時間 33,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
60,992 KB
testcase_01 AC 421 ms
61,048 KB
testcase_02 AC 371 ms
60,824 KB
testcase_03 AC 374 ms
61,096 KB
testcase_04 AC 412 ms
61,400 KB
testcase_05 AC 382 ms
61,068 KB
testcase_06 AC 395 ms
61,204 KB
testcase_07 AC 441 ms
63,316 KB
testcase_08 AC 547 ms
89,644 KB
testcase_09 AC 610 ms
89,632 KB
testcase_10 AC 667 ms
89,748 KB
testcase_11 AC 853 ms
89,716 KB
testcase_12 AC 775 ms
89,660 KB
testcase_13 AC 1,360 ms
91,728 KB
testcase_14 TLE -
testcase_15 AC 1,407 ms
91,872 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 722 ms
89,620 KB
testcase_19 AC 1,031 ms
90,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:19:31: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long
    println(dp.take(P+1).min()!!.toDouble() / N.toDouble())
                              ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val sc = Scanner(System.`in`)
    val (N, P) = Pair(sc.nextInt(), sc.nextInt())
    val q = Array(N, { arrayOf(sc.nextInt(), sc.nextInt(), sc.nextInt(), 1 )})
    var dp = Array(P+4, { 0L })
    val inf = 100000L*N
    val filled_dp = Array(P+1, { inf })
    for (i in 0 until N) {
        val _dp = filled_dp.clone()
        for (j in 0 until 4) {
            for (k in Math.min(4*i, P-j) downTo 0) {
                _dp[k+j] = Math.min(_dp[k+j], dp[k]+q[i][j])
            }
        }
        dp = _dp
    }
    println(dp.take(P+1).min()!!.toDouble() / N.toDouble())
}
0