結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
267,496 KB
testcase_02 AC 67 ms
79,260 KB
testcase_03 AC 43 ms
148,384 KB
testcase_04 AC 140 ms
82,660 KB
testcase_05 AC 81 ms
231,288 KB
testcase_06 AC 53 ms
72,736 KB
testcase_07 AC 36 ms
266,736 KB
testcase_08 AC 37 ms
60,788 KB
testcase_09 AC 77 ms
83,060 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 688 ms
485,888 KB
testcase_18 AC 493 ms
238,420 KB
testcase_19 AC 71 ms
80,860 KB
testcase_20 AC 190 ms
131,904 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 350 ms
206,984 KB
testcase_26 AC 134 ms
102,016 KB
testcase_27 TLE -
testcase_28 AC 198 ms
140,264 KB
testcase_29 AC 407 ms
232,428 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 1,490 ms
178,644 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

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