結果

問題 No.2730 Two Types Luggage
ユーザー ryohei22ryohei22
提出日時 2024-05-03 21:51:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 264,236 KB
最終ジャッジ日時 2024-05-03 21:51:27
合計ジャッジ時間 14,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 79 ms
72,064 KB
testcase_03 AC 44 ms
57,600 KB
testcase_04 AC 178 ms
76,032 KB
testcase_05 AC 89 ms
76,032 KB
testcase_06 AC 62 ms
65,664 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 43 ms
52,096 KB
testcase_09 AC 85 ms
76,544 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 739 ms
231,488 KB
testcase_18 AC 536 ms
231,328 KB
testcase_19 AC 79 ms
80,128 KB
testcase_20 AC 206 ms
132,392 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, W = map(int, input().split())
A = sorted(list(map(int, input().split())), reverse=True)
B = list(map(int, input().split()))
C = list(map(int, input().split()))

ans = 0
for i in range(2**M):
	lst = []
	for j in range(M):
		if (i >> j) & 1:
			lst.append(j)
	w = sum(B[i] for i in lst)
	v = sum(C[i] for i in lst)
	if W < w:
		continue

	j = 0
	while j < N and w + A[j] <= W:
		w += 1
		v += A[j]
		j += 1
	ans = max(ans, v)
print(ans)
0