結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | lllllll88938494 |
提出日時 | 2022-09-14 11:54:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 893 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 81,912 KB |
最終ジャッジ日時 | 2024-05-08 17:24:25 |
合計ジャッジ時間 | 3,794 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 37 ms
52,864 KB |
testcase_02 | WA | - |
testcase_03 | AC | 37 ms
52,736 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 48 ms
60,160 KB |
testcase_07 | AC | 36 ms
52,224 KB |
testcase_08 | WA | - |
testcase_09 | AC | 128 ms
81,508 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 84 ms
76,800 KB |
testcase_13 | AC | 97 ms
77,084 KB |
testcase_14 | AC | 97 ms
77,384 KB |
testcase_15 | AC | 94 ms
76,704 KB |
testcase_16 | AC | 99 ms
77,216 KB |
testcase_17 | AC | 105 ms
77,664 KB |
testcase_18 | AC | 103 ms
77,584 KB |
testcase_19 | WA | - |
testcase_20 | AC | 99 ms
76,760 KB |
testcase_21 | AC | 91 ms
76,532 KB |
testcase_22 | AC | 146 ms
81,524 KB |
testcase_23 | WA | - |
testcase_24 | AC | 140 ms
81,508 KB |
testcase_25 | AC | 141 ms
81,620 KB |
testcase_26 | AC | 141 ms
81,572 KB |
ソースコード
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+1)] dp[0][0][0] = 0 for w in range(n+1): for i in range(gx+1): for j in range(gy+1): if dp[w][i][j] == inf: continue if w+1 < n+1: dp[w+1][i][j] = min(dp[w+1][i][j],dp[w][i][j]) x,y,c=wa[w][0],wa[w][1],wa[w][2] 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 i < i+x <=gx and j < j+y <=gy and w+1 < n+1: 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+1): ans=min(ans,dp[i][gx][gy]) print(ans)