結果

問題 No.626 Randomized 01 Knapsack
ユーザー 37zigen37zigen
提出日時 2017-12-21 23:08:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,448 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 79,736 KB
実行使用メモリ 61,764 KB
最終ジャッジ日時 2024-05-10 02:39:02
合計ジャッジ時間 9,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,092 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 186 ms
54,372 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 232 ms
58,144 KB
testcase_11 AC 293 ms
59,748 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 304 ms
61,360 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];
					ans = Math.max(ans, (long) relaxAns);
				} 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