結果

問題 No.580 旅館の予約計画
ユーザー rutilicusrutilicus
提出日時 2020-12-17 18:43:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 1,108 bytes
コンパイル時間 15,451 ms
コンパイル使用メモリ 439,936 KB
実行使用メモリ 53,440 KB
最終ジャッジ日時 2024-09-21 08:11:44
合計ジャッジ時間 27,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
52,028 KB
testcase_01 AC 290 ms
51,968 KB
testcase_02 AC 304 ms
51,888 KB
testcase_03 AC 312 ms
51,748 KB
testcase_04 AC 304 ms
52,052 KB
testcase_05 AC 301 ms
52,088 KB
testcase_06 AC 310 ms
52,012 KB
testcase_07 AC 318 ms
52,196 KB
testcase_08 AC 315 ms
52,188 KB
testcase_09 AC 324 ms
52,108 KB
testcase_10 AC 311 ms
52,288 KB
testcase_11 AC 313 ms
52,288 KB
testcase_12 AC 318 ms
52,260 KB
testcase_13 AC 385 ms
52,144 KB
testcase_14 AC 424 ms
52,740 KB
testcase_15 AC 395 ms
53,196 KB
testcase_16 AC 382 ms
53,076 KB
testcase_17 AC 377 ms
53,032 KB
testcase_18 AC 371 ms
52,988 KB
testcase_19 AC 386 ms
53,440 KB
testcase_20 AC 372 ms
53,252 KB
testcase_21 AC 379 ms
53,136 KB
testcase_22 AC 371 ms
53,260 KB
testcase_23 AC 380 ms
53,108 KB
testcase_24 AC 373 ms
53,260 KB
testcase_25 AC 382 ms
52,920 KB
testcase_26 AC 301 ms
52,108 KB
testcase_27 AC 319 ms
52,016 KB
testcase_28 AC 303 ms
51,928 KB
testcase_29 AC 297 ms
51,948 KB
testcase_30 AC 381 ms
52,900 KB
testcase_31 AC 388 ms
53,172 KB
testcase_32 AC 387 ms
53,016 KB
testcase_33 AC 392 ms
53,016 KB
testcase_34 AC 386 ms
53,212 KB
testcase_35 AC 303 ms
51,936 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:11:17: warning: name shadowed: m
        val (h, m) = hm.split(":")
                ^
Main.kt:37:13: warning: 'appendln(Int): 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 (n, m) = readInputLine().split(" ").map { it.toInt() }

    val timeList = mutableListOf<Pair<Int, Int>>()

    repeat(m) {
        val (d, hm, o, hmo) = readInputLine().split(" ")
        val (h, m) = hm.split(":")
        val (ho, mo) = hmo.split(":")
        timeList.add(Pair(d.toInt() * 24 * 60 + h.toInt() * 60 + m.toInt(),
                          o.toInt() * 24 * 60 + ho.toInt() * 60 + mo.toInt() + 1))
    }

    timeList.sortBy { it.first }
    timeList.sortBy { it.second }

    var ans = 0

    val room = IntArray(n) { -1 }

    for (t in timeList) {
        var maxIndex = -1
        for ((i, r) in room.withIndex()) {
            if (r <= t.first && (maxIndex == -1 || room[maxIndex] < r)) {
                maxIndex = i
            }
        }
        if (maxIndex != -1) {
            room[maxIndex] = t.second
            ans++
        }
    }

    builder.appendln(ans)

    print(builder.toString())
}

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