結果

問題 No.13 囲みたい!
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-01 21:07:57
言語 Ruby
(3.4.1)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 313 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-12-26 02:53:54
合計ジャッジ時間 2,223 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 83 ms
12,032 KB
testcase_03 AC 92 ms
12,544 KB
testcase_04 AC 86 ms
12,416 KB
testcase_05 AC 92 ms
12,288 KB
testcase_06 AC 94 ms
12,160 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 AC 90 ms
12,544 KB
testcase_09 AC 93 ms
12,672 KB
testcase_10 AC 82 ms
12,160 KB
testcase_11 AC 92 ms
12,416 KB
testcase_12 AC 88 ms
12,160 KB
testcase_13 AC 86 ms
12,416 KB
testcase_14 AC 83 ms
12,416 KB
testcase_15 AC 77 ms
11,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def r u;u==$p[u]?u:$p[u]=r($p[u]);end
n,m=gets.split.map &:to_i
a=(1..m).map{gets.split.map(&:to_i)+[0]}+[[0]*n]
$p=(0...m*n).to_a
print (0...m).any?{|x|(0...n).any?{|y|
  [[x+1,y],[x,y+1]].any?{|z,w|
    a[x][y]==a[z][w]&&(
      u=r x*n+y
      v=r z*n+w
      $p[u]=v
      u==v
    )
  }
}}?'':'im','possible'
0