結果

問題 No.626 Randomized 01 Knapsack
ユーザー 37zigen37zigen
提出日時 2017-12-21 23:07:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 1,449 bytes
コンパイル時間 2,423 ms
コンパイル使用メモリ 79,612 KB
実行使用メモリ 61,560 KB
最終ジャッジ日時 2024-06-26 03:30:44
合計ジャッジ時間 10,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,200 KB
testcase_01 AC 152 ms
53,968 KB
testcase_02 AC 157 ms
54,124 KB
testcase_03 AC 167 ms
54,088 KB
testcase_04 AC 161 ms
54,136 KB
testcase_05 AC 193 ms
53,988 KB
testcase_06 AC 211 ms
54,360 KB
testcase_07 AC 227 ms
56,992 KB
testcase_08 AC 224 ms
56,788 KB
testcase_09 AC 251 ms
57,892 KB
testcase_10 AC 251 ms
58,028 KB
testcase_11 AC 322 ms
61,068 KB
testcase_12 AC 340 ms
59,680 KB
testcase_13 AC 323 ms
59,744 KB
testcase_14 AC 325 ms
59,508 KB
testcase_15 AC 321 ms
59,980 KB
testcase_16 AC 329 ms
59,536 KB
testcase_17 AC 352 ms
60,352 KB
testcase_18 AC 318 ms
60,316 KB
testcase_19 AC 314 ms
61,220 KB
testcase_20 AC 328 ms
61,560 KB
testcase_21 AC 314 ms
59,096 KB
testcase_22 AC 324 ms
61,464 KB
testcase_23 AC 318 ms
60,828 KB
testcase_24 AC 307 ms
60,208 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