結果

問題 No.1163 I want to be a high achiever
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-08 08:55:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 142,080 KB
最終ジャッジ日時 2024-07-07 19:15:23
合計ジャッジ時間 12,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
67,456 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 52 ms
60,928 KB
testcase_04 AC 410 ms
101,504 KB
testcase_05 AC 661 ms
123,264 KB
testcase_06 AC 214 ms
82,176 KB
testcase_07 AC 800 ms
141,568 KB
testcase_08 AC 817 ms
141,184 KB
testcase_09 AC 155 ms
77,440 KB
testcase_10 AC 427 ms
103,552 KB
testcase_11 AC 642 ms
127,232 KB
testcase_12 AC 445 ms
106,624 KB
testcase_13 AC 255 ms
85,248 KB
testcase_14 AC 269 ms
86,528 KB
testcase_15 AC 750 ms
132,736 KB
testcase_16 AC 352 ms
94,976 KB
testcase_17 AC 487 ms
107,264 KB
testcase_18 AC 847 ms
141,184 KB
testcase_19 AC 243 ms
82,944 KB
testcase_20 AC 213 ms
79,616 KB
testcase_21 AC 133 ms
77,184 KB
testcase_22 AC 607 ms
116,480 KB
testcase_23 AC 517 ms
112,256 KB
testcase_24 AC 864 ms
142,080 KB
testcase_25 AC 401 ms
98,688 KB
testcase_26 AC 46 ms
53,888 KB
testcase_27 AC 44 ms
53,504 KB
testcase_28 AC 44 ms
53,248 KB
testcase_29 AC 44 ms
53,760 KB
testcase_30 AC 43 ms
53,504 KB
testcase_31 AC 43 ms
53,504 KB
testcase_32 AC 44 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
inf = 10 ** 9


N, X = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

if all(a < X for a in A):
    print(-1)
    exit()


score = 0
cost = 0
dp = defaultdict(int)
dp[0] = 0

for a, b in zip(A, B):
    if a >= X:
        score += a - X
        cost += b
    else:
        p = X - a
        ndp = defaultdict(int)
        for k, v in dp.items():
            ndp[k] = max(ndp[k], v)
            ndp[k+p] = max(ndp[k+p], v + b)
        dp = ndp


tmp = cost
for k, v in dp.items():
    if k > score:
        continue
    tmp = max(tmp, cost + v)

print(sum(B) - tmp)
0