結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー smz_8110smz_8110
提出日時 2017-04-05 15:34:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-08 10:50:33
合計ジャッジ時間 4,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
11,904 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 73 ms
12,160 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 79 ms
12,160 KB
testcase_07 AC 76 ms
12,032 KB
testcase_08 AC 299 ms
12,288 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 73 ms
12,032 KB
testcase_11 AC 74 ms
12,032 KB
testcase_12 AC 75 ms
12,160 KB
testcase_13 AC 91 ms
12,160 KB
testcase_14 AC 79 ms
12,032 KB
testcase_15 AC 77 ms
12,160 KB
testcase_16 AC 80 ms
12,032 KB
testcase_17 AC 85 ms
12,288 KB
testcase_18 AC 79 ms
12,160 KB
testcase_19 AC 97 ms
12,160 KB
testcase_20 AC 82 ms
12,160 KB
testcase_21 AC 83 ms
12,160 KB
testcase_22 AC 223 ms
12,288 KB
testcase_23 AC 262 ms
12,032 KB
testcase_24 AC 175 ms
12,160 KB
testcase_25 AC 145 ms
12,032 KB
testcase_26 AC 181 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

Gx,Gy,N,F=gets.split.map &:to_i
M=N.times.map{gets.split.map(&:to_i)}
a=(Gy+1).times.map{|y|(Gx+1).times.map{|x|y*F+x*F}}
e=[[0,0,0]]
M.each{|c|
  h={}
  e.each{|v|
    x,y,z=v[0]+c[0],v[1]+c[1],v[2]+c[2]
    next if x>Gx||y>Gy
    if a[y][x]>z
      h[y*1000+x]=[x,y,z]
      (Gy-y+1).times{|ny|
        (Gx-x+1).times{|nx|
          nz=z+nx*F+ny*F
          if a[y+ny][x+nx]>nz
            a[y+ny][x+nx]=nz
          end
        }
      }
    end
  }
  e.concat h.values
}
p a[Gy][Gx]
0