結果

問題 No.1163 I want to be a high achiever
ユーザー neko_the_shadowneko_the_shadow
提出日時 2020-08-31 16:53:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 277,324 KB
最終ジャッジ日時 2024-11-16 05:04:47
合計ジャッジ時間 25,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,632 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,492 KB
testcase_03 AC 63 ms
71,156 KB
testcase_04 AC 1,037 ms
193,548 KB
testcase_05 AC 1,367 ms
244,188 KB
testcase_06 AC 869 ms
169,956 KB
testcase_07 AC 1,666 ms
268,736 KB
testcase_08 AC 1,550 ms
265,180 KB
testcase_09 WA -
testcase_10 AC 1,046 ms
199,664 KB
testcase_11 AC 1,390 ms
243,416 KB
testcase_12 AC 1,071 ms
201,944 KB
testcase_13 AC 907 ms
172,056 KB
testcase_14 AC 913 ms
176,400 KB
testcase_15 AC 1,483 ms
256,708 KB
testcase_16 AC 976 ms
187,764 KB
testcase_17 AC 1,129 ms
204,772 KB
testcase_18 AC 1,596 ms
268,768 KB
testcase_19 AC 838 ms
165,564 KB
testcase_20 AC 894 ms
169,792 KB
testcase_21 WA -
testcase_22 AC 1,297 ms
230,872 KB
testcase_23 AC 1,197 ms
213,932 KB
testcase_24 AC 1,716 ms
277,324 KB
testcase_25 AC 1,056 ms
194,332 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 42 ms
55,420 KB
testcase_30 AC 38 ms
52,692 KB
testcase_31 WA -
testcase_32 AC 38 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

for i in range(n):
    a[i] -= x

m = sum(a)
if m >= 0:
    print(1)
    exit()

if max(a) < 0:
    print(-1)
    exit()

dp = [{} for _ in range(n+1)]
dp[0][m] = 0
for i in range(n):
    for k in dp[i]:
        dp[i+1][k] = min(dp[i+1].get(k, float('inf')), dp[i][k])
        dp[i+1][k-a[i]] = min(dp[i+1].get(k-a[i], float('inf')), dp[i][k]+b[i])

ans = float('inf')
for k in dp[n]:
    if k >= 0:
        ans = min(ans, dp[n][k])
print(ans)
0