結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー 0w10w1
提出日時 2017-04-09 20:58:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,132 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 84,640 KB
最終ジャッジ日時 2024-07-18 01:38:24
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,532 KB
testcase_01 AC 46 ms
54,228 KB
testcase_02 AC 46 ms
55,124 KB
testcase_03 AC 43 ms
54,988 KB
testcase_04 AC 44 ms
54,500 KB
testcase_05 AC 45 ms
54,704 KB
testcase_06 WA -
testcase_07 AC 44 ms
54,944 KB
testcase_08 AC 267 ms
83,440 KB
testcase_09 AC 246 ms
82,880 KB
testcase_10 AC 106 ms
78,164 KB
testcase_11 AC 78 ms
75,332 KB
testcase_12 AC 147 ms
79,356 KB
testcase_13 AC 157 ms
78,948 KB
testcase_14 AC 156 ms
78,736 KB
testcase_15 AC 162 ms
79,124 KB
testcase_16 AC 152 ms
78,992 KB
testcase_17 AC 169 ms
79,640 KB
testcase_18 AC 162 ms
79,148 KB
testcase_19 AC 164 ms
79,428 KB
testcase_20 AC 129 ms
78,192 KB
testcase_21 AC 127 ms
78,484 KB
testcase_22 AC 298 ms
84,580 KB
testcase_23 AC 293 ms
83,960 KB
testcase_24 AC 282 ms
83,932 KB
testcase_25 AC 285 ms
83,940 KB
testcase_26 AC 306 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 )

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