結果

問題 No.179 塗り分け
ユーザー komkomhkomkomh
提出日時 2019-04-25 17:12:16
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,430 bytes
コンパイル時間 13,437 ms
コンパイル使用メモリ 446,988 KB
実行使用メモリ 157,896 KB
最終ジャッジ日時 2024-11-20 18:07:35
合計ジャッジ時間 116,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
58,516 KB
testcase_01 AC 322 ms
87,648 KB
testcase_02 AC 586 ms
93,528 KB
testcase_03 WA -
testcase_04 AC 720 ms
92,336 KB
testcase_05 AC 331 ms
88,068 KB
testcase_06 TLE -
testcase_07 RE -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 316 ms
57,420 KB
testcase_16 WA -
testcase_17 RE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 335 ms
55,544 KB
testcase_21 AC 337 ms
88,428 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 WA -
testcase_37 AC 318 ms
88,132 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 320 ms
87,944 KB
testcase_42 WA -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val (h, w) = readLine()!!.split(" ").map(String::toInt)
    val blacks = (0 until h).flatMap { h2 ->
        readLine()!!
            .mapIndexed { index, c -> Pair(index, c) }
            .filter { it.second != '.' }
            .map { Pair(h2, it.first) }
    }

//    blacks.forEach { println(it) }
//    println("----------")

    if (blacks.size % 2 != 0) {
        println("NO")
        return
    }

    val redSize = blacks.size / 2
    fun canPaint(vararg redIndexes: Int): Boolean {
        return when (redIndexes.size >= redSize) {
            true -> {
                val redMasus = redIndexes.map { blacks[it] }
                val blueMasus = blacks.filter { !redMasus.contains(it) }

                for (i in 0 until h) {
                    for (j in 0 until w) {
                        if (i == 0 && j == 0) {
                            continue;
                        }
                        val movedReds = redMasus.map { Pair(it.first + i, it.second + j) }
                        if (movedReds == blueMasus) {
                            return true
                        }
                    }
                }
                return false
            }
            false -> (redIndexes.last() until redSize).map { canPaint(*redIndexes, it) }.any()
        }
    }
    when (canPaint(1)) {
        true -> println("YES")
        false -> println("NO")
    }
}
0