結果

問題 No.13 囲みたい!
ユーザー gigurururugigurururu
提出日時 2014-11-27 22:09:03
言語 Ruby
(3.4.1)
結果
AC  
実行時間 3,584 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 8,064 KB
実行使用メモリ 182,528 KB
最終ジャッジ日時 2025-01-03 09:19:32
合計ジャッジ時間 8,976 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,800 KB
testcase_01 AC 83 ms
12,672 KB
testcase_02 AC 84 ms
12,672 KB
testcase_03 AC 3,584 ms
182,528 KB
testcase_04 AC 98 ms
13,440 KB
testcase_05 AC 2,647 ms
136,832 KB
testcase_06 AC 147 ms
16,512 KB
testcase_07 AC 188 ms
16,512 KB
testcase_08 AC 158 ms
14,336 KB
testcase_09 AC 152 ms
14,208 KB
testcase_10 AC 98 ms
13,056 KB
testcase_11 AC 140 ms
14,336 KB
testcase_12 AC 91 ms
12,928 KB
testcase_13 AC 111 ms
13,440 KB
testcase_14 AC 110 ms
13,312 KB
testcase_15 AC 86 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def g;gets.split.map(&:to_i);end
w,h=g
$m=(1..h).map{g+[0]}+[0]*w

$checked={}

def dfs(x,y)
  return false if $checked[[x,y]]
  r=[[0,-1],[1,0],[-1,0],[0,1]]
  c=$m[y][x]
  stack=[[[],-1,x,y]]
  while stack[0]
    gone,dir,tx,ty=stack.pop
    if $m[ty][tx]==c
      $checked[[tx,ty]]=true
      return true if gone.index([tx,ty])
      4.times{|i|i!=dir&&stack.push([gone+[[tx,ty]],3-i,tx+r[i][0],ty+r[i][1]])}
    end
  end
  return false
end

puts (0...h).any?{|y|(0...w).any?{|x|dfs(x,y)}}?"possible":"impossible"
0