結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー miraxialmiraxial
提出日時 2017-03-24 22:44:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-05 22:09:53
合計ジャッジ時間 3,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,032 KB
testcase_01 AC 72 ms
12,032 KB
testcase_02 AC 72 ms
12,032 KB
testcase_03 AC 76 ms
12,032 KB
testcase_04 AC 72 ms
12,032 KB
testcase_05 AC 72 ms
12,160 KB
testcase_06 AC 71 ms
12,032 KB
testcase_07 AC 72 ms
12,160 KB
testcase_08 AC 84 ms
12,416 KB
testcase_09 AC 86 ms
12,288 KB
testcase_10 AC 75 ms
12,032 KB
testcase_11 AC 77 ms
12,032 KB
testcase_12 AC 73 ms
12,032 KB
testcase_13 AC 73 ms
12,032 KB
testcase_14 AC 72 ms
12,032 KB
testcase_15 AC 71 ms
12,160 KB
testcase_16 AC 73 ms
12,160 KB
testcase_17 AC 72 ms
12,160 KB
testcase_18 AC 72 ms
12,032 KB
testcase_19 AC 72 ms
12,288 KB
testcase_20 AC 72 ms
12,160 KB
testcase_21 AC 72 ms
12,288 KB
testcase_22 AC 77 ms
12,160 KB
testcase_23 AC 78 ms
12,672 KB
testcase_24 AC 74 ms
12,544 KB
testcase_25 AC 73 ms
12,288 KB
testcase_26 AC 74 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gx,gy,n,cc=gets.split.map &:to_i
h={}
hh={}
n.times do
  g=gets.split.map &:to_i
  h.each do |e,v|
    if (gg0=e[0]+g[0])<=gx && (gg1=e[1]+g[1])<=gy
      gg2=[gg0,gg1]
      if hh[gg2]
        hh[gg2]=g[2]+v if hh[gg2]>g[2]+v
      else
        hh[gg2]=g[2]+v
      end
    end
  end
  hh[[g[0],g[1]]]=g[2]
  h=hh.dup
end
x=gx+gy
c=x*cc
h.each do |e,v|
  g=v+(x-e[0]-e[1])*cc
  c=g if c>g
end
p c
0