結果

問題 No.179 塗り分け
ユーザー IJKTanabeIJKTanabe
提出日時 2019-03-24 18:49:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 877 ms / 3,000 ms
コード長 2,201 bytes
コンパイル時間 15,768 ms
コンパイル使用メモリ 439,732 KB
実行使用メモリ 92,776 KB
最終ジャッジ日時 2024-07-23 14:58:21
合計ジャッジ時間 39,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
57,112 KB
testcase_01 AC 319 ms
57,048 KB
testcase_02 AC 323 ms
57,060 KB
testcase_03 AC 320 ms
57,204 KB
testcase_04 AC 320 ms
57,116 KB
testcase_05 AC 491 ms
75,448 KB
testcase_06 AC 399 ms
61,604 KB
testcase_07 AC 497 ms
88,952 KB
testcase_08 AC 347 ms
57,016 KB
testcase_09 AC 336 ms
57,312 KB
testcase_10 AC 575 ms
90,608 KB
testcase_11 AC 558 ms
90,196 KB
testcase_12 AC 877 ms
92,776 KB
testcase_13 AC 330 ms
57,352 KB
testcase_14 AC 332 ms
57,152 KB
testcase_15 AC 320 ms
57,168 KB
testcase_16 AC 318 ms
56,960 KB
testcase_17 AC 320 ms
57,212 KB
testcase_18 AC 580 ms
90,208 KB
testcase_19 AC 575 ms
89,984 KB
testcase_20 AC 688 ms
92,488 KB
testcase_21 AC 644 ms
90,784 KB
testcase_22 AC 654 ms
90,448 KB
testcase_23 AC 536 ms
90,820 KB
testcase_24 AC 725 ms
90,840 KB
testcase_25 AC 556 ms
84,444 KB
testcase_26 AC 538 ms
91,440 KB
testcase_27 AC 648 ms
91,524 KB
testcase_28 AC 544 ms
91,384 KB
testcase_29 AC 679 ms
92,436 KB
testcase_30 AC 527 ms
91,792 KB
testcase_31 AC 671 ms
92,220 KB
testcase_32 AC 553 ms
92,108 KB
testcase_33 AC 709 ms
92,316 KB
testcase_34 AC 552 ms
92,136 KB
testcase_35 AC 707 ms
92,572 KB
testcase_36 AC 322 ms
52,388 KB
testcase_37 AC 315 ms
51,976 KB
testcase_38 AC 316 ms
52,076 KB
testcase_39 AC 314 ms
52,396 KB
testcase_40 AC 326 ms
52,252 KB
testcase_41 AC 323 ms
52,276 KB
testcase_42 AC 316 ms
52,252 KB
testcase_43 AC 466 ms
61,516 KB
testcase_44 AC 508 ms
72,884 KB
testcase_45 AC 345 ms
52,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:7:39: warning: name shadowed: it
        it.mapIndexedNotNull { index, it ->
                                      ^
Main.kt:28:5: warning: parameter 'cellsList' is never used
    cellsList: List<List<String>>,
    ^
Main.kt:31:5: warning: parameter 'W' is never used
    W: Int,
    ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (H, W) = readLine()!!.split(" ").map(String::toInt)
    // 入力を各セルごとの二次元リストに
    val cellsList: List<List<String>> = List(H) { readLine()!!.chunked(1) }
    // 行ごとに、黒色セルのインデックスのリストを取得
    val blackIndices = cellsList.map {
        it.mapIndexedNotNull { index, it ->
            if (it == "#") (index) else null
        }
    }

/*
    //Check Print
    cellsList.forEach { println(it) }
    blackIndices.forEach { println(it) }
*/

    for (vecY in (-H + 1)..(H - 1)) for (vecX in (-W + 1)..(W - 1)) {
        if (tryPaint(cellsList, blackIndices, H, W, vecY, vecX)) {
            println("YES")
            return
        }
    }
    println("NO")
}

fun tryPaint(
    cellsList: List<List<String>>,
    blackIndices: List<List<Int>>,
    H: Int,
    W: Int,
    vecY: Int,
    vecX: Int
): Boolean {

    //val cells = cellsList.map { it.toMutableList() }
    val rangeY =
        if (vecY < 0)
            ((H - 1) downTo 0).toList()
        else
            (0 until H).toList()

    val indices =
        if (vecX < 0)
            blackIndices.map { it.reversed().toMutableList() }
        else
            blackIndices.map { it.toMutableList() }

    var flg: Boolean? = null

/*
    //Check Print
    println("vec = $vecY, $vecX")
    println("Y_range = $rangeY")
    println("blackIndices =")
    indices.forEach { println(it) }
*/

    for (y in rangeY) {
        while (indices[y].isNotEmpty()) {
            val x = indices[y].removeAt(0)
            val trgY = y + vecY
            val trgX = x + vecX

            //cells[y][x] = "R"

            if (rangeY.contains(trgY) && indices[trgY].contains(trgX)) {
                //cells[trgY][trgX] = "B"
                indices[trgY].remove(trgX)
                if (flg == null) flg = true
            } else {
                //flg = false
                return false
            }
        }
    }

/*
    //Check Print
    cells.forEach { println(it.joinToString("")) }
    println(flg)
    println(" ")
*/

    return flg ?: false
}
0