結果

問題 No.179 塗り分け
ユーザー komkomhkomkomh
提出日時 2019-05-16 08:32:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,199 ms / 3,000 ms
コード長 1,319 bytes
コンパイル時間 15,012 ms
コンパイル使用メモリ 442,000 KB
実行使用メモリ 91,140 KB
最終ジャッジ日時 2024-07-23 15:01:45
合計ジャッジ時間 37,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
56,920 KB
testcase_01 AC 302 ms
56,940 KB
testcase_02 AC 311 ms
56,856 KB
testcase_03 AC 304 ms
56,984 KB
testcase_04 AC 310 ms
57,172 KB
testcase_05 AC 318 ms
57,096 KB
testcase_06 AC 364 ms
71,752 KB
testcase_07 AC 319 ms
57,076 KB
testcase_08 AC 373 ms
61,488 KB
testcase_09 AC 372 ms
59,480 KB
testcase_10 AC 778 ms
86,340 KB
testcase_11 AC 710 ms
86,184 KB
testcase_12 AC 1,199 ms
91,140 KB
testcase_13 AC 313 ms
57,180 KB
testcase_14 AC 315 ms
57,144 KB
testcase_15 AC 304 ms
57,056 KB
testcase_16 AC 305 ms
56,932 KB
testcase_17 AC 308 ms
56,848 KB
testcase_18 AC 586 ms
86,428 KB
testcase_19 AC 565 ms
86,320 KB
testcase_20 AC 314 ms
57,104 KB
testcase_21 AC 321 ms
57,008 KB
testcase_22 AC 481 ms
86,144 KB
testcase_23 AC 490 ms
86,120 KB
testcase_24 AC 452 ms
86,292 KB
testcase_25 AC 413 ms
86,216 KB
testcase_26 AC 482 ms
86,240 KB
testcase_27 AC 626 ms
86,272 KB
testcase_28 AC 571 ms
86,272 KB
testcase_29 AC 819 ms
86,096 KB
testcase_30 AC 710 ms
86,328 KB
testcase_31 AC 891 ms
86,064 KB
testcase_32 AC 690 ms
86,228 KB
testcase_33 AC 907 ms
86,232 KB
testcase_34 AC 739 ms
86,148 KB
testcase_35 AC 980 ms
86,296 KB
testcase_36 AC 310 ms
56,952 KB
testcase_37 AC 304 ms
56,896 KB
testcase_38 AC 306 ms
56,864 KB
testcase_39 AC 306 ms
56,968 KB
testcase_40 AC 310 ms
57,072 KB
testcase_41 AC 303 ms
56,932 KB
testcase_42 AC 312 ms
57,188 KB
testcase_43 AC 357 ms
67,624 KB
testcase_44 AC 400 ms
86,020 KB
testcase_45 AC 337 ms
59,472 KB
権限があれば一括ダウンロードができます

ソースコード

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) }
    }

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

    fun canCopy(): Boolean {
        for (moveH in -h until h) {
            for (moveW in -w until w) {
                if (moveH == 0 && moveW == 0) {
                    continue
                }

                var tmpBlacks = blacks.toMutableSet()
                for (red in blacks) {
                    if (!tmpBlacks.contains(red)) {
                        continue
                    }
                    val blue = Pair(red.first + moveH, red.second + moveW)
                    if (!tmpBlacks.contains(blue)) {
                        break
                    }
                    tmpBlacks.remove(red)
                    tmpBlacks.remove(blue)
                }
                if (tmpBlacks.isEmpty()) {
                    return true
                }
            }
        }
        return false
    }

    when (canCopy()) {
        true -> println("YES")
        false -> println("NO")
    }
}
0