結果

問題 No.626 Randomized 01 Knapsack
ユーザー 37zigen37zigen
提出日時 2017-12-21 23:02:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 948 ms / 2,000 ms
コード長 1,406 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 79,396 KB
実行使用メモリ 61,528 KB
最終ジャッジ日時 2024-06-06 00:47:45
合計ジャッジ時間 14,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
52,800 KB
testcase_01 AC 126 ms
53,960 KB
testcase_02 AC 134 ms
54,164 KB
testcase_03 AC 141 ms
54,212 KB
testcase_04 AC 150 ms
53,872 KB
testcase_05 AC 151 ms
54,148 KB
testcase_06 AC 209 ms
54,632 KB
testcase_07 AC 241 ms
56,996 KB
testcase_08 AC 243 ms
56,920 KB
testcase_09 AC 310 ms
59,068 KB
testcase_10 AC 366 ms
58,508 KB
testcase_11 AC 735 ms
59,828 KB
testcase_12 AC 815 ms
59,852 KB
testcase_13 AC 308 ms
59,448 KB
testcase_14 AC 454 ms
60,004 KB
testcase_15 AC 661 ms
58,660 KB
testcase_16 AC 790 ms
59,852 KB
testcase_17 AC 814 ms
61,528 KB
testcase_18 AC 710 ms
59,728 KB
testcase_19 AC 767 ms
60,228 KB
testcase_20 AC 948 ms
59,612 KB
testcase_21 AC 297 ms
59,852 KB
testcase_22 AC 580 ms
60,648 KB
testcase_23 AC 827 ms
59,480 KB
testcase_24 AC 257 ms
59,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

class Main {
	long ans = 0;
	int N;
	long W;
	long[][] a;

	void dfs(int curPos, long curWeight, long curValue) {
		ans = Math.max(ans, curValue);
		if (curPos >= N)
			return;
		{
			long resWeight = W - curWeight;
			double relaxAns = curValue;
			for (int i = curPos; i < N && resWeight != 0; ++i) {
				if (resWeight >= a[i][1]) {
					relaxAns += a[i][0];
					resWeight -= a[i][1];
				} else {
					relaxAns += 1.d * a[i][0] * (1.d * resWeight / a[i][1]);
					resWeight = 0;
				}
			}
			if (relaxAns <= ans) {
				return;
			}
		}
		dfs(curPos + 1, curWeight, curValue);
		if (curWeight + a[curPos][1] <= W) {
			dfs(curPos + 1, curWeight + a[curPos][1], curValue + a[curPos][0]);
		}
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		N = sc.nextInt();
		W = sc.nextLong();
		a = new long[N][2];
		for (int i = 0; i < N; ++i) {
			a[i][0] = sc.nextLong();//value
			a[i][1] = sc.nextLong();//weight
		}
		Arrays.sort(a, new Comparator<long[]>() {
			@Override
			public int compare(long[] arg0, long[] arg1) {
				return -Double.compare((double) arg0[0] / arg0[1], (double) arg1[0] / arg1[1]);
			}
		});
		dfs(0, 0, 0);
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static void main(String[] args) {
		new Main().run();
	}

}
0