結果

問題 No.179 塗り分け
ユーザー snipsnipsnipsnipsnipsnip
提出日時 2015-04-06 00:50:04
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-10-02 13:39:03
合計ジャッジ時間 22,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 WA -
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 184 ms
23,168 KB
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 102 ms
12,416 KB
testcase_09 AC 93 ms
12,416 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,662 ms
77,568 KB
testcase_13 AC 92 ms
12,160 KB
testcase_14 AC 91 ms
12,288 KB
testcase_15 AC 94 ms
12,160 KB
testcase_16 WA -
testcase_17 RE -
testcase_18 WA -
testcase_19 AC 522 ms
40,192 KB
testcase_20 WA -
testcase_21 AC 165 ms
18,048 KB
testcase_22 AC 130 ms
15,872 KB
testcase_23 WA -
testcase_24 AC 128 ms
16,640 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 680 ms
50,432 KB
testcase_28 WA -
testcase_29 AC 992 ms
67,240 KB
testcase_30 AC 875 ms
55,740 KB
testcase_31 AC 1,185 ms
71,716 KB
testcase_32 WA -
testcase_33 AC 1,201 ms
70,300 KB
testcase_34 WA -
testcase_35 AC 1,385 ms
73,700 KB
testcase_36 AC 91 ms
12,288 KB
testcase_37 AC 91 ms
12,416 KB
testcase_38 AC 93 ms
12,416 KB
testcase_39 AC 91 ms
12,288 KB
testcase_40 AC 92 ms
12,416 KB
testcase_41 AC 90 ms
12,032 KB
testcase_42 AC 93 ms
12,416 KB
testcase_43 AC 108 ms
13,696 KB
testcase_44 AC 200 ms
23,296 KB
testcase_45 AC 95 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'set'

H, W = gets.split.map(&:to_i)

class << MAP = Array.new(H) { gets.strip }
  def ok?(dx, dy)
    d = dy * W + dx
    bs = blacks - blacks.map {|i| i + d }
    bs.size == blacks.size / 2 && bs.all? {|i| flat[i + d] == 35 }
  end

  def solve
    ax, ay, bx, by = aabb
    (1..bx - ax).each do |dx|
      (1..by - ay).each do |dy|
        return :YES if ok?(dx, dy)
      end
    end
    :NO
  end

  def flat
    @flat ||= map(&:bytes).flatten
  end

  def blacks
    @blacks ||= Set.new(flat.each_with_index.map {|cell, i| i if cell == 35 }.compact)
  end

  def aabb
    ax = ay = bx = by = nil
    blacks.each do |i|
      y, x = i.divmod(W)
      ax = x if !ax || ax > x
      ay = y if !ay || ay > y
      bx = x if !bx || bx < x
      by = y if !by || by < y
    end
    return ax, ay, bx, by
  end
end

puts MAP.solve
0