結果

問題 No.1163 I want to be a high achiever
ユーザー 37zigen37zigen
提出日時 2020-08-19 17:20:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 766 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 259,456 KB
最終ジャッジ日時 2024-10-12 05:01:27
合計ジャッジ時間 18,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
80,512 KB
testcase_01 AC 78 ms
81,024 KB
testcase_02 AC 78 ms
78,976 KB
testcase_03 AC 80 ms
82,944 KB
testcase_04 AC 703 ms
258,688 KB
testcase_05 AC 707 ms
255,488 KB
testcase_06 AC 670 ms
258,588 KB
testcase_07 AC 766 ms
252,928 KB
testcase_08 AC 710 ms
251,136 KB
testcase_09 AC 655 ms
257,024 KB
testcase_10 AC 694 ms
259,040 KB
testcase_11 AC 708 ms
255,744 KB
testcase_12 AC 697 ms
259,456 KB
testcase_13 AC 695 ms
258,304 KB
testcase_14 AC 689 ms
258,304 KB
testcase_15 AC 722 ms
253,440 KB
testcase_16 AC 705 ms
258,560 KB
testcase_17 AC 698 ms
257,920 KB
testcase_18 AC 723 ms
251,392 KB
testcase_19 AC 684 ms
258,944 KB
testcase_20 AC 676 ms
258,816 KB
testcase_21 AC 666 ms
257,920 KB
testcase_22 AC 719 ms
256,640 KB
testcase_23 AC 721 ms
257,920 KB
testcase_24 AC 723 ms
251,776 KB
testcase_25 AC 698 ms
259,012 KB
testcase_26 AC 601 ms
247,424 KB
testcase_27 AC 70 ms
77,312 KB
testcase_28 AC 43 ms
60,672 KB
testcase_29 AC 601 ms
247,808 KB
testcase_30 AC 47 ms
63,232 KB
testcase_31 AC 49 ms
63,616 KB
testcase_32 AC 53 ms
66,048 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 in range(N):
    ndp=[INF]*100001
    for j in range(-50000,50001):
        if dp[j]==INF:
            continue
        ndp[j+A[i]-X]=min(ndp[j+A[i]-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