結果

問題 No.1163 I want to be a high achiever
ユーザー 37zigen37zigen
提出日時 2020-08-19 17:25:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 906 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 260,096 KB
最終ジャッジ日時 2024-10-12 05:03:38
合計ジャッジ時間 22,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
84,608 KB
testcase_01 AC 96 ms
83,968 KB
testcase_02 AC 94 ms
83,200 KB
testcase_03 AC 104 ms
85,120 KB
testcase_04 AC 854 ms
260,044 KB
testcase_05 AC 876 ms
259,328 KB
testcase_06 AC 770 ms
258,008 KB
testcase_07 AC 900 ms
255,744 KB
testcase_08 AC 868 ms
254,848 KB
testcase_09 AC 846 ms
259,328 KB
testcase_10 AC 803 ms
258,188 KB
testcase_11 AC 878 ms
258,816 KB
testcase_12 AC 835 ms
258,040 KB
testcase_13 AC 854 ms
258,416 KB
testcase_14 AC 852 ms
258,080 KB
testcase_15 AC 877 ms
257,024 KB
testcase_16 AC 848 ms
258,348 KB
testcase_17 AC 856 ms
257,940 KB
testcase_18 AC 874 ms
254,976 KB
testcase_19 AC 835 ms
260,096 KB
testcase_20 AC 779 ms
257,888 KB
testcase_21 AC 843 ms
259,200 KB
testcase_22 AC 883 ms
259,968 KB
testcase_23 AC 906 ms
259,812 KB
testcase_24 AC 877 ms
255,232 KB
testcase_25 AC 836 ms
258,120 KB
testcase_26 AC 785 ms
251,904 KB
testcase_27 AC 86 ms
81,280 KB
testcase_28 AC 48 ms
62,464 KB
testcase_29 AC 798 ms
250,368 KB
testcase_30 AC 57 ms
66,560 KB
testcase_31 AC 58 ms
66,688 KB
testcase_32 AC 63 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
A=[int(x) for x in input().split()]
B=[int(x) for x in input().split()]
INF=10**18
dp=[INF]*100001
dp[0]=0
for i,a in enumerate(A):
    ndp=[INF]*100001
    for j in range(-50000,50001):
        ndp[j+a-X]=min(ndp[j+a-X],dp[j])
        ndp[j]=min(ndp[j],dp[j]+B[i])
    dp=ndp

ans=min(dp[0:50001])
if ans==sum(B):
    print(-1)
else:
    print(ans)
0