結果
問題 | No.1163 I want to be a high achiever |
ユーザー | mkawa2 |
提出日時 | 2021-06-22 14:47:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 129 ms / 2,000 ms |
コード長 | 1,085 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 66,240 KB |
最終ジャッジ日時 | 2024-06-23 11:48:18 |
合計ジャッジ時間 | 4,057 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
61,752 KB |
testcase_01 | AC | 38 ms
52,820 KB |
testcase_02 | AC | 47 ms
60,076 KB |
testcase_03 | AC | 45 ms
60,188 KB |
testcase_04 | AC | 88 ms
64,604 KB |
testcase_05 | AC | 113 ms
64,112 KB |
testcase_06 | AC | 62 ms
65,328 KB |
testcase_07 | AC | 127 ms
63,880 KB |
testcase_08 | AC | 124 ms
61,944 KB |
testcase_09 | AC | 39 ms
52,868 KB |
testcase_10 | AC | 92 ms
64,728 KB |
testcase_11 | AC | 112 ms
64,060 KB |
testcase_12 | AC | 90 ms
64,956 KB |
testcase_13 | AC | 67 ms
64,904 KB |
testcase_14 | AC | 67 ms
64,344 KB |
testcase_15 | AC | 121 ms
62,532 KB |
testcase_16 | AC | 79 ms
65,160 KB |
testcase_17 | AC | 97 ms
64,800 KB |
testcase_18 | AC | 124 ms
63,356 KB |
testcase_19 | AC | 66 ms
64,428 KB |
testcase_20 | AC | 58 ms
65,048 KB |
testcase_21 | AC | 38 ms
54,152 KB |
testcase_22 | AC | 102 ms
63,912 KB |
testcase_23 | AC | 96 ms
64,284 KB |
testcase_24 | AC | 129 ms
62,716 KB |
testcase_25 | AC | 88 ms
66,240 KB |
testcase_26 | AC | 39 ms
54,180 KB |
testcase_27 | AC | 37 ms
53,088 KB |
testcase_28 | AC | 38 ms
53,924 KB |
testcase_29 | AC | 40 ms
53,440 KB |
testcase_30 | AC | 40 ms
52,140 KB |
testcase_31 | AC | 45 ms
52,564 KB |
testcase_32 | AC | 40 ms
53,044 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = 10**16 # md = 998244353 md = 10**9+7 n, x = LI() aa = LI() bb = LI() aa = [-a+x for a in aa] s = sum(aa) if s <= 0: print(0) exit() dp = [inf]*(s+1) dp[0] = 0 for a, b in zip(aa, bb): if a <= 0: continue for i in range(s, -1, -1): pre = dp[i] if pre == inf: continue ni = min(i+a, s) dp[ni] = min(dp[ni], pre+b) ans = dp[-1] if ans >= sum(bb): ans = -1 print(ans)