結果

問題 No.179 塗り分け
ユーザー yudedakoyudedako
提出日時 2020-08-27 11:16:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 372 ms / 3,000 ms
コード長 1,219 bytes
コンパイル時間 15,744 ms
コンパイル使用メモリ 447,816 KB
実行使用メモリ 57,380 KB
最終ジャッジ日時 2024-07-23 15:18:50
合計ジャッジ時間 32,381 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
56,992 KB
testcase_01 AC 321 ms
57,132 KB
testcase_02 AC 324 ms
56,996 KB
testcase_03 AC 326 ms
57,020 KB
testcase_04 AC 325 ms
56,944 KB
testcase_05 AC 334 ms
57,192 KB
testcase_06 AC 330 ms
57,028 KB
testcase_07 AC 336 ms
56,932 KB
testcase_08 AC 338 ms
57,104 KB
testcase_09 AC 339 ms
57,092 KB
testcase_10 AC 344 ms
57,080 KB
testcase_11 AC 344 ms
57,080 KB
testcase_12 AC 372 ms
57,380 KB
testcase_13 AC 326 ms
57,092 KB
testcase_14 AC 331 ms
56,972 KB
testcase_15 AC 325 ms
57,108 KB
testcase_16 AC 324 ms
57,056 KB
testcase_17 AC 329 ms
57,104 KB
testcase_18 AC 339 ms
56,940 KB
testcase_19 AC 341 ms
57,128 KB
testcase_20 AC 350 ms
57,164 KB
testcase_21 AC 342 ms
57,204 KB
testcase_22 AC 339 ms
57,084 KB
testcase_23 AC 338 ms
57,164 KB
testcase_24 AC 345 ms
57,124 KB
testcase_25 AC 343 ms
57,076 KB
testcase_26 AC 339 ms
57,084 KB
testcase_27 AC 348 ms
57,096 KB
testcase_28 AC 345 ms
56,972 KB
testcase_29 AC 340 ms
57,084 KB
testcase_30 AC 341 ms
57,108 KB
testcase_31 AC 354 ms
57,088 KB
testcase_32 AC 347 ms
57,212 KB
testcase_33 AC 345 ms
57,100 KB
testcase_34 AC 340 ms
57,208 KB
testcase_35 AC 348 ms
57,200 KB
testcase_36 AC 326 ms
56,888 KB
testcase_37 AC 336 ms
57,036 KB
testcase_38 AC 325 ms
57,088 KB
testcase_39 AC 326 ms
56,856 KB
testcase_40 AC 328 ms
56,952 KB
testcase_41 AC 328 ms
57,064 KB
testcase_42 AC 329 ms
56,880 KB
testcase_43 AC 333 ms
57,132 KB
testcase_44 AC 336 ms
57,112 KB
testcase_45 AC 329 ms
57,008 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}}
    if (blackCell.size < 2) {
        println("NO")
        return
    }
    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