結果

問題 No.626 Randomized 01 Knapsack
ユーザー 37zigen37zigen
提出日時 2017-12-21 23:09:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 79,576 KB
実行使用メモリ 56,888 KB
最終ジャッジ日時 2024-06-26 03:31:17
合計ジャッジ時間 9,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,196 KB
testcase_01 AC 135 ms
54,148 KB
testcase_02 AC 134 ms
54,268 KB
testcase_03 AC 161 ms
54,084 KB
testcase_04 AC 148 ms
54,124 KB
testcase_05 AC 162 ms
54,400 KB
testcase_06 AC 195 ms
54,896 KB
testcase_07 AC 208 ms
56,856 KB
testcase_08 AC 210 ms
56,888 KB
testcase_09 AC 237 ms
46,248 KB
testcase_10 AC 233 ms
46,220 KB
testcase_11 AC 302 ms
48,288 KB
testcase_12 AC 309 ms
47,892 KB
testcase_13 AC 290 ms
48,580 KB
testcase_14 AC 312 ms
48,964 KB
testcase_15 AC 307 ms
48,232 KB
testcase_16 AC 303 ms
48,632 KB
testcase_17 AC 316 ms
48,404 KB
testcase_18 AC 316 ms
48,648 KB
testcase_19 AC 323 ms
48,816 KB
testcase_20 AC 316 ms
48,792 KB
testcase_21 AC 293 ms
48,608 KB
testcase_22 AC 313 ms
48,432 KB
testcase_23 AC 312 ms
48,264 KB
testcase_24 AC 289 ms
48,324 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 = N - 1; i >= curPos && 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