結果

問題 No.1163 I want to be a high achiever
ユーザー qibqib
提出日時 2023-03-02 20:47:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 829 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 143,368 KB
最終ジャッジ日時 2024-09-17 14:13:40
合計ジャッジ時間 11,266 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
66,096 KB
testcase_01 AC 37 ms
52,820 KB
testcase_02 AC 37 ms
52,444 KB
testcase_03 AC 44 ms
59,484 KB
testcase_04 AC 390 ms
101,176 KB
testcase_05 AC 626 ms
122,820 KB
testcase_06 AC 167 ms
77,484 KB
testcase_07 AC 753 ms
140,192 KB
testcase_08 AC 722 ms
138,808 KB
testcase_09 AC 37 ms
53,088 KB
testcase_10 AC 399 ms
101,764 KB
testcase_11 AC 628 ms
127,952 KB
testcase_12 AC 426 ms
102,600 KB
testcase_13 AC 208 ms
78,976 KB
testcase_14 AC 224 ms
79,988 KB
testcase_15 AC 731 ms
133,212 KB
testcase_16 AC 321 ms
88,044 KB
testcase_17 AC 459 ms
106,352 KB
testcase_18 AC 716 ms
140,016 KB
testcase_19 AC 200 ms
78,152 KB
testcase_20 AC 131 ms
76,312 KB
testcase_21 AC 37 ms
52,756 KB
testcase_22 AC 575 ms
113,828 KB
testcase_23 AC 498 ms
111,112 KB
testcase_24 AC 829 ms
143,368 KB
testcase_25 AC 357 ms
93,164 KB
testcase_26 AC 38 ms
53,296 KB
testcase_27 AC 38 ms
53,900 KB
testcase_28 AC 37 ms
52,652 KB
testcase_29 AC 38 ms
52,600 KB
testcase_30 AC 38 ms
53,248 KB
testcase_31 AC 37 ms
52,540 KB
testcase_32 AC 37 ms
52,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

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

if all([x < 0 for x in a]):
  print("-1")
  exit()

cost = - sum(a)
if cost <= 0:
  print("0")
  exit()

dp = {}
dp[0] = 0
ans = INF
for i in range(n):
  if a[i] >= 0:
    continue

  ndp = {}
  for k, v in dp.items():
    ndp[k] = min(ndp.get(k, INF), v)
    nxt = k - a[i]
    if nxt >= cost:
      ans = min(ans, v + b[i])
    else:
      ndp[nxt] = min(ndp.get(nxt, INF), v + b[i])

  dp = ndp

print(ans)
0