結果

問題 No.179 塗り分け
ユーザー IJKTanabeIJKTanabe
提出日時 2019-03-24 19:59:27
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 2,783 bytes
コンパイル時間 14,974 ms
コンパイル使用メモリ 448,404 KB
実行使用メモリ 96,476 KB
最終ジャッジ日時 2024-04-30 20:02:45
合計ジャッジ時間 33,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
57,064 KB
testcase_01 AC 274 ms
57,132 KB
testcase_02 AC 277 ms
57,096 KB
testcase_03 AC 283 ms
57,088 KB
testcase_04 AC 286 ms
57,172 KB
testcase_05 AC 421 ms
75,356 KB
testcase_06 AC 397 ms
66,160 KB
testcase_07 AC 453 ms
89,052 KB
testcase_08 AC 287 ms
57,036 KB
testcase_09 AC 293 ms
57,208 KB
testcase_10 AC 543 ms
92,776 KB
testcase_11 AC 507 ms
92,744 KB
testcase_12 AC 805 ms
96,476 KB
testcase_13 AC 295 ms
57,192 KB
testcase_14 AC 290 ms
57,036 KB
testcase_15 AC 271 ms
57,120 KB
testcase_16 AC 273 ms
56,984 KB
testcase_17 AC 269 ms
57,064 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 631 ms
94,156 KB
testcase_21 AC 579 ms
93,572 KB
testcase_22 AC 564 ms
91,584 KB
testcase_23 AC 454 ms
91,248 KB
testcase_24 AC 576 ms
92,040 KB
testcase_25 AC 483 ms
85,840 KB
testcase_26 AC 467 ms
93,304 KB
testcase_27 AC 581 ms
94,360 KB
testcase_28 AC 480 ms
93,328 KB
testcase_29 AC 605 ms
94,292 KB
testcase_30 AC 478 ms
93,792 KB
testcase_31 AC 608 ms
96,024 KB
testcase_32 AC 475 ms
93,880 KB
testcase_33 AC 613 ms
95,860 KB
testcase_34 WA -
testcase_35 AC 626 ms
96,204 KB
testcase_36 AC 281 ms
57,168 KB
testcase_37 AC 284 ms
57,116 KB
testcase_38 AC 291 ms
57,196 KB
testcase_39 AC 296 ms
57,196 KB
testcase_40 AC 309 ms
57,016 KB
testcase_41 AC 299 ms
57,164 KB
testcase_42 AC 311 ms
57,220 KB
testcase_43 AC 433 ms
66,280 KB
testcase_44 AC 448 ms
77,648 KB
testcase_45 AC 300 ms
57,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
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, value ->
            if (value == "#") 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 (tryPaintB(cellsList, blackIndices, H, W, vecY, vecX)) {
            println("YES")
            return
        }
    }
    println("NO")
}

fun tryPaintB(
    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()) {
            var trgY = y
            var trgX = indices[y].first()

            while (rangeY.contains(trgY) && indices[trgY].contains(trgX)) {
                //cells[y][x] = "R"
                indices[trgY].removeAt(0)
                trgY += vecY
                trgX += vecX
                if (rangeY.contains(trgY) && indices[trgY].contains(trgX)) {
                    //cells[trgY][trgX] = "B"
                    indices[trgY].remove(trgX)
                    if (flg == null) flg = true
                    trgY += vecY
                    trgX += vecX
                } else {
                    //flg = false
                    return false
                }
            }
//            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