結果

問題 No.2730 Two Types Luggage
ユーザー ks2mks2m
提出日時 2024-04-19 21:33:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,042 ms / 2,000 ms
コード長 1,448 bytes
コンパイル時間 3,370 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 130,972 KB
最終ジャッジ日時 2024-10-11 14:13:28
合計ジャッジ時間 26,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,632 KB
testcase_01 AC 51 ms
36,752 KB
testcase_02 AC 52 ms
36,812 KB
testcase_03 AC 51 ms
36,968 KB
testcase_04 AC 102 ms
39,112 KB
testcase_05 AC 56 ms
36,832 KB
testcase_06 AC 53 ms
36,828 KB
testcase_07 AC 51 ms
37,156 KB
testcase_08 AC 52 ms
37,064 KB
testcase_09 AC 63 ms
37,120 KB
testcase_10 AC 179 ms
45,416 KB
testcase_11 AC 815 ms
117,396 KB
testcase_12 AC 985 ms
129,844 KB
testcase_13 AC 763 ms
105,144 KB
testcase_14 AC 682 ms
105,176 KB
testcase_15 AC 555 ms
60,804 KB
testcase_16 AC 581 ms
66,008 KB
testcase_17 AC 922 ms
126,700 KB
testcase_18 AC 825 ms
128,276 KB
testcase_19 AC 263 ms
49,404 KB
testcase_20 AC 655 ms
78,820 KB
testcase_21 AC 884 ms
104,676 KB
testcase_22 AC 845 ms
128,848 KB
testcase_23 AC 297 ms
49,432 KB
testcase_24 AC 687 ms
83,164 KB
testcase_25 AC 759 ms
118,072 KB
testcase_26 AC 502 ms
62,256 KB
testcase_27 AC 783 ms
104,404 KB
testcase_28 AC 654 ms
76,364 KB
testcase_29 AC 860 ms
121,672 KB
testcase_30 AC 437 ms
49,800 KB
testcase_31 AC 788 ms
104,480 KB
testcase_32 AC 791 ms
85,708 KB
testcase_33 AC 1,042 ms
130,508 KB
testcase_34 AC 945 ms
130,604 KB
testcase_35 AC 1,012 ms
130,972 KB
testcase_36 AC 1,020 ms
130,728 KB
testcase_37 AC 992 ms
130,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		long w = Long.parseLong(sa[2]);
		sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		sa = br.readLine().split(" ");
		int[] b = new int[m];
		for (int i = 0; i < m; i++) {
			b[i] = Integer.parseInt(sa[i]);
		}
		sa = br.readLine().split(" ");
		int[] c = new int[m];
		for (int i = 0; i < m; i++) {
			c[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		Arrays.sort(a);
		reverse(a);
		long[] a2 = new long[n + 1];
		for (int i = 0; i < n; i++) {
			a2[i + 1] = a2[i] + a[i];
		}

		long ans = 0;
		int end = 1 << m;
		for (int i = 0; i < end; i++) {
			long wei = 0;
			long val = 0;
			for (int j = 0; j < m; j++) {
				if ((i >> j & 1) == 1) {
					wei += b[j];
					val += c[j];
				}
			}
			if (wei <= w) {
				int rem = (int) Math.min(n, w - wei);
				val += a2[rem];
				ans = Math.max(ans, val);
			}
		}
		System.out.println(ans);
	}

	static void reverse(int[] a) {
		for (int i = 0; i < a.length / 2; i++) {
			int tmp = a[i];
			a[i] = a[a.length - 1 - i];
			a[a.length - 1 - i] = tmp;
		}
	}
}
0