結果

問題 No.179 塗り分け
ユーザー shi-moshi-mo
提出日時 2016-03-31 13:54:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,758 ms / 3,000 ms
コード長 1,026 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-07-23 14:35:29
合計ジャッジ時間 8,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 86 ms
12,416 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 85 ms
12,160 KB
testcase_05 AC 118 ms
13,824 KB
testcase_06 AC 88 ms
12,288 KB
testcase_07 AC 85 ms
12,160 KB
testcase_08 AC 174 ms
18,688 KB
testcase_09 AC 244 ms
14,976 KB
testcase_10 AC 91 ms
13,696 KB
testcase_11 AC 92 ms
13,568 KB
testcase_12 AC 247 ms
17,536 KB
testcase_13 AC 86 ms
12,288 KB
testcase_14 AC 89 ms
12,160 KB
testcase_15 AC 85 ms
12,288 KB
testcase_16 AC 86 ms
12,288 KB
testcase_17 AC 88 ms
12,032 KB
testcase_18 AC 93 ms
14,848 KB
testcase_19 AC 93 ms
14,208 KB
testcase_20 AC 197 ms
18,688 KB
testcase_21 AC 612 ms
13,440 KB
testcase_22 AC 1,758 ms
12,928 KB
testcase_23 AC 97 ms
13,824 KB
testcase_24 AC 263 ms
14,464 KB
testcase_25 AC 93 ms
13,568 KB
testcase_26 AC 113 ms
16,896 KB
testcase_27 AC 182 ms
18,560 KB
testcase_28 AC 98 ms
17,408 KB
testcase_29 AC 180 ms
18,560 KB
testcase_30 AC 140 ms
18,560 KB
testcase_31 AC 201 ms
18,688 KB
testcase_32 AC 118 ms
18,944 KB
testcase_33 AC 179 ms
18,688 KB
testcase_34 AC 114 ms
18,816 KB
testcase_35 AC 180 ms
18,688 KB
testcase_36 AC 85 ms
12,160 KB
testcase_37 AC 86 ms
12,160 KB
testcase_38 AC 87 ms
12,160 KB
testcase_39 AC 85 ms
12,160 KB
testcase_40 AC 85 ms
12,288 KB
testcase_41 AC 86 ms
12,160 KB
testcase_42 AC 84 ms
12,288 KB
testcase_43 AC 94 ms
13,056 KB
testcase_44 AC 105 ms
15,360 KB
testcase_45 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h, w = gets.split.map(&:to_i)
s = h.times.map{ gets }
board = { h: h, w: w, s: s }

def is_empty?(board)
  board[:s].each do |row|
    return false if row =~ /#/o
  end
  true
end

def include_index?(board, i, j)
  0 <= i && i < board[:h] && 0 <= j && j < board[:w]
end

def can_paint_bicolor?(board, dx, dy)
  h, w = board[:h], board[:w]
  checked = Array.new(h){ Array.new(w, false) }

  result = true
  h.times do |i|
    break unless result

    w.times do |j|
      break unless result

      next if checked[i][j]
      next if '#' != board[:s][i][j]

      checked[i][j] = true
      ni, nj = i + dx, j + dy
      if !include_index?(board, ni, nj) || '#' != board[:s][ni][nj]
        result = false
        break
      end
      checked[ni][nj] = true
    end
  end
  result
end

if is_empty?(board)
  puts 'NO'
  exit 0
end

ok = false
h.times do |dx|
  break if ok
  ((1-w)...w).each do |dy|
    break if ok
    next if 0 == dx && 0 == dy

    ok |= can_paint_bicolor?(board, dx, dy)
  end
end
puts ok ? 'YES' : 'NO'
0