結果

問題 No.13 囲みたい!
ユーザー gigurururugigurururu
提出日時 2014-11-27 21:54:34
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 381 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 58,356 KB
最終ジャッジ日時 2024-06-11 04:12:19
合計ジャッジ時間 3,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,032 KB
testcase_01 AC 72 ms
12,288 KB
testcase_02 AC 73 ms
12,032 KB
testcase_03 RE -
testcase_04 AC 81 ms
12,928 KB
testcase_05 RE -
testcase_06 AC 131 ms
16,896 KB
testcase_07 AC 173 ms
15,360 KB
testcase_08 AC 134 ms
13,696 KB
testcase_09 AC 133 ms
13,440 KB
testcase_10 AC 82 ms
12,544 KB
testcase_11 AC 120 ms
12,928 KB
testcase_12 AC 79 ms
12,160 KB
testcase_13 AC 91 ms
12,544 KB
testcase_14 AC 95 ms
12,544 KB
testcase_15 AC 77 ms
12,416 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