結果

問題 No.179 塗り分け
ユーザー yudedakoyudedako
提出日時 2020-08-27 11:14:54
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,146 bytes
コンパイル時間 14,867 ms
コンパイル使用メモリ 437,308 KB
実行使用メモリ 52,888 KB
最終ジャッジ日時 2024-11-07 15:34:20
合計ジャッジ時間 29,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
52,200 KB
testcase_01 AC 304 ms
51,964 KB
testcase_02 AC 303 ms
52,376 KB
testcase_03 AC 306 ms
52,236 KB
testcase_04 AC 307 ms
51,900 KB
testcase_05 AC 314 ms
52,276 KB
testcase_06 AC 316 ms
52,424 KB
testcase_07 WA -
testcase_08 AC 322 ms
52,216 KB
testcase_09 AC 326 ms
52,336 KB
testcase_10 AC 320 ms
52,532 KB
testcase_11 AC 338 ms
52,520 KB
testcase_12 AC 363 ms
52,888 KB
testcase_13 AC 310 ms
52,368 KB
testcase_14 AC 306 ms
51,988 KB
testcase_15 WA -
testcase_16 AC 303 ms
52,120 KB
testcase_17 WA -
testcase_18 AC 326 ms
52,332 KB
testcase_19 AC 321 ms
52,548 KB
testcase_20 AC 332 ms
52,696 KB
testcase_21 AC 332 ms
52,240 KB
testcase_22 AC 323 ms
52,436 KB
testcase_23 AC 320 ms
52,512 KB
testcase_24 AC 323 ms
52,232 KB
testcase_25 AC 318 ms
52,520 KB
testcase_26 AC 319 ms
52,412 KB
testcase_27 AC 326 ms
52,636 KB
testcase_28 AC 323 ms
52,488 KB
testcase_29 AC 322 ms
52,420 KB
testcase_30 AC 339 ms
52,340 KB
testcase_31 AC 335 ms
52,428 KB
testcase_32 AC 327 ms
52,256 KB
testcase_33 AC 333 ms
52,620 KB
testcase_34 AC 320 ms
52,300 KB
testcase_35 AC 327 ms
52,660 KB
testcase_36 AC 327 ms
52,120 KB
testcase_37 AC 327 ms
51,944 KB
testcase_38 AC 321 ms
52,056 KB
testcase_39 AC 306 ms
52,236 KB
testcase_40 AC 303 ms
52,240 KB
testcase_41 AC 305 ms
52,116 KB
testcase_42 AC 307 ms
52,184 KB
testcase_43 AC 317 ms
52,228 KB
testcase_44 AC 332 ms
52,340 KB
testcase_45 AC 309 ms
52,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


fun main() {
    val (height, width) = readLine()!!.trim().split(' ').map(String::toInt)
    val square = Array(height){readLine()!!.trim()}
    val type = Array(height){IntArray(width){-1} }
    val blackCell = (0 until height).flatMap{h -> (0 until width).filter{w -> square[h][w] == '#'}.map{w -> h to w}}
    var hasPair = true
    outer@for (dh in 0 until height) {
        for (dw in -width + 1 until width) {
            if (dh == 0 && dw == 0) continue
            val count = (dh * width * 2) + dw + width
            hasPair = true
            for ((h, w) in blackCell) {
                if (type[h][w] >= count) continue
                type[h][w] = count
                if (h + dh !in 0 until height || w + dw !in 0 until width) {
                    hasPair = false
                    break
                }
                if (square[h + dh][w + dw] != '#') {
                    hasPair = false
                    break
                }
                type[h + dh][w + dw] = count
            }
            if (hasPair) {
                break@outer
            }
        }
    }
    println(if (hasPair) "YES" else "NO")
}
0