結果

問題 No.13 囲みたい!
ユーザー gigurururugigurururu
提出日時 2014-11-27 21:54:34
言語 Ruby
(3.4.1)
結果
RE  
実行時間 -
コード長 381 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 8,064 KB
実行使用メモリ 61,372 KB
最終ジャッジ日時 2025-01-03 09:18:38
合計ジャッジ時間 4,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
13,056 KB
testcase_01 AC 79 ms
12,800 KB
testcase_02 AC 81 ms
12,928 KB
testcase_03 RE -
testcase_04 AC 94 ms
13,824 KB
testcase_05 RE -
testcase_06 AC 157 ms
17,792 KB
testcase_07 AC 212 ms
16,896 KB
testcase_08 AC 167 ms
14,080 KB
testcase_09 AC 162 ms
14,080 KB
testcase_10 AC 104 ms
13,056 KB
testcase_11 AC 148 ms
14,080 KB
testcase_12 AC 89 ms
12,928 KB
testcase_13 AC 110 ms
13,184 KB
testcase_14 AC 109 ms
13,184 KB
testcase_15 AC 84 ms
12,800 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(gone,dir,x,y,c)
  r=[[0,-1],[1,0],[-1,0],[0,1]]
  $m[y][x]==c&&($checked[[x,y]]=true;gone.index([x,y])||(0..3).any?{|i|i!=dir&&dfs(gone+[[x,y]],3-i,x+r[i][0],y+r[i][1],c)})
end

puts (0...h).any?{|y|(0...w).any?{|x|!$checked[[x,y]]&&dfs([],-1,x,y,$m[y][x])}}?"possible":"impossible"
0