結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-09-14 12:08:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 82,108 KB
最終ジャッジ日時 2024-05-08 17:33:29
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 39 ms
52,736 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 58 ms
64,512 KB
testcase_07 AC 42 ms
52,608 KB
testcase_08 AC 175 ms
82,108 KB
testcase_09 AC 154 ms
81,624 KB
testcase_10 AC 63 ms
68,224 KB
testcase_11 AC 64 ms
67,712 KB
testcase_12 AC 91 ms
76,800 KB
testcase_13 AC 103 ms
77,048 KB
testcase_14 AC 100 ms
77,460 KB
testcase_15 AC 102 ms
76,768 KB
testcase_16 AC 102 ms
77,196 KB
testcase_17 AC 111 ms
77,384 KB
testcase_18 AC 109 ms
77,376 KB
testcase_19 AC 109 ms
77,492 KB
testcase_20 AC 107 ms
77,544 KB
testcase_21 AC 96 ms
76,640 KB
testcase_22 AC 145 ms
81,616 KB
testcase_23 AC 144 ms
81,616 KB
testcase_24 AC 146 ms
81,660 KB
testcase_25 AC 142 ms
81,492 KB
testcase_26 AC 145 ms
81,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

gx,gy,n,f=map(int,input().split())
wa=[[0,0,0]]+[list(map(int,input().split())) for i in range(n)]
inf=10**8
dp=[[[inf]*(gy+1) for i in range(gx+1)] for i in range(n+2)]
dp[0][0][0] = 0

for w in range(n+2):
    for i in range(gx+1):
        for j in range(gy+1):
            if dp[w][i][j] == inf:
                continue
            if w+1 < n+2:
                dp[w+1][i][j] = min(dp[w+1][i][j],dp[w][i][j])
            
            if i + 1 <= gx:
                dp[w][i+1][j] = min(dp[w][i+1][j],dp[w][i][j]+f)
            if j + 1 <= gy:
                dp[w][i][j+1] = min(dp[w][i][j+1],dp[w][i][j]+f)

            if w+1 < n + 2:
                x,y,c=wa[w][0],wa[w][1],wa[w][2]
                if i <= i+x <=gx and j <= j+y <=gy:
                    dp[w+1][i+x][j+y] = min(dp[w+1][i+x][j+y],dp[w][i][j] + c)

ans=10**10
# for i in range(n+2):
#     ans=min(ans,dp[i][gx][gy])
# print(ans)


print(dp[n+1][gx][gy])
            
            
0