結果

問題 No.2730 Two Types Luggage
ユーザー ks2mks2m
提出日時 2024-04-19 21:32:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,014 ms / 2,000 ms
コード長 1,448 bytes
コンパイル時間 4,834 ms
コンパイル使用メモリ 77,268 KB
実行使用メモリ 131,116 KB
最終ジャッジ日時 2024-10-11 14:11:58
合計ジャッジ時間 28,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,032 KB
testcase_01 AC 53 ms
36,956 KB
testcase_02 AC 53 ms
36,856 KB
testcase_03 AC 54 ms
36,648 KB
testcase_04 AC 97 ms
38,720 KB
testcase_05 AC 57 ms
36,892 KB
testcase_06 AC 53 ms
36,796 KB
testcase_07 AC 54 ms
36,980 KB
testcase_08 AC 54 ms
37,064 KB
testcase_09 AC 64 ms
37,160 KB
testcase_10 AC 180 ms
45,008 KB
testcase_11 AC 879 ms
117,516 KB
testcase_12 AC 976 ms
129,940 KB
testcase_13 AC 772 ms
105,500 KB
testcase_14 AC 694 ms
105,272 KB
testcase_15 AC 570 ms
60,408 KB
testcase_16 AC 580 ms
65,360 KB
testcase_17 AC 922 ms
126,944 KB
testcase_18 AC 833 ms
128,004 KB
testcase_19 AC 268 ms
49,308 KB
testcase_20 AC 653 ms
78,600 KB
testcase_21 AC 870 ms
104,228 KB
testcase_22 AC 841 ms
128,808 KB
testcase_23 AC 290 ms
49,488 KB
testcase_24 AC 710 ms
82,852 KB
testcase_25 AC 747 ms
118,156 KB
testcase_26 AC 507 ms
62,460 KB
testcase_27 AC 864 ms
104,160 KB
testcase_28 AC 638 ms
76,440 KB
testcase_29 AC 853 ms
121,432 KB
testcase_30 AC 439 ms
49,332 KB
testcase_31 AC 796 ms
103,940 KB
testcase_32 AC 841 ms
85,828 KB
testcase_33 AC 1,014 ms
130,788 KB
testcase_34 AC 936 ms
130,608 KB
testcase_35 AC 995 ms
130,908 KB
testcase_36 AC 993 ms
131,116 KB
testcase_37 AC 1,011 ms
130,740 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