結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー 0w10w1
提出日時 2017-04-09 21:00:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 1,179 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 84,828 KB
最終ジャッジ日時 2024-07-18 01:38:33
合計ジャッジ時間 4,664 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,740 KB
testcase_01 AC 44 ms
55,276 KB
testcase_02 AC 37 ms
54,980 KB
testcase_03 AC 38 ms
54,900 KB
testcase_04 AC 39 ms
54,928 KB
testcase_05 AC 39 ms
55,180 KB
testcase_06 AC 37 ms
54,392 KB
testcase_07 AC 38 ms
54,640 KB
testcase_08 AC 232 ms
83,788 KB
testcase_09 AC 212 ms
82,880 KB
testcase_10 AC 92 ms
78,732 KB
testcase_11 AC 68 ms
75,728 KB
testcase_12 AC 136 ms
79,408 KB
testcase_13 AC 161 ms
79,072 KB
testcase_14 AC 142 ms
79,124 KB
testcase_15 AC 141 ms
79,120 KB
testcase_16 AC 131 ms
78,736 KB
testcase_17 AC 147 ms
79,364 KB
testcase_18 AC 143 ms
79,148 KB
testcase_19 AC 144 ms
79,428 KB
testcase_20 AC 121 ms
78,196 KB
testcase_21 AC 114 ms
78,824 KB
testcase_22 AC 266 ms
84,576 KB
testcase_23 AC 256 ms
84,360 KB
testcase_24 AC 257 ms
84,324 KB
testcase_25 AC 255 ms
84,828 KB
testcase_26 AC 281 ms
84,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

Gx, Gy, N, F = map( int, input().split() )
X = []
Y = []
C = []
for i in range( N ):
  x, y, c = map( int, input().split() )
  X.append( x )
  Y.append( y )
  C.append( c )

if N == 0:
  exit( print( F * ( Gx + Gy ) ) )

INF = int( 1e15 )

dp = [ INF for i in range( Gy + 1 ) ]
dp = [ deepcopy( dp ) for i in range( Gx + 1 ) ]
dp = [ deepcopy( dp ) for i in range( N + 1 ) ]
dp[ 0 ][ 0 ][ 0 ] = 0
for i in range( N ):
  for j in range( Gx + 1 ):
    for k in range( Gy + 1 ):
      dp[ i + 1 ][ j ][ k ] = min( dp[ i + 1 ][ j ][ k ], dp[ i ][ j ][ k ] )
      if j + X[ i ] <= Gx and k + Y[ i ] <= Gy:
        dp[ i + 1 ][ j + X[ i ] ][ k + Y[ i ] ] = min( dp[ i + 1 ][ j + X[ i ] ][ k + Y[ i ] ], dp[ i ][ j ][ k ] + C[ i ] )
      if j + 1 <= Gx:
        dp[ i ][ j + 1 ][ k ] = min( dp[ i ][ j + 1 ][ k ], dp[ i ][ j ][ k ] + F )
        dp[ i + 1 ][ j + 1 ][ k ] = min( dp[ i + 1 ][ j + 1 ][ k ], dp[ i ][ j ][ k ] + F )
      if k + 1 <= Gy:
        dp[ i ][ j ][ k + 1 ] = min( dp[ i ][ j ][ k + 1 ], dp[ i ][ j ][ k ] + F )
        dp[ i + 1 ][ j ][ k + 1 ] = min( dp[ i + 1 ][ j ][ k + 1 ], dp[ i ][ j ][ k ] + F )
print( dp[ N ][ Gx ][ Gy ] )
0