結果

問題 No.798 コレクション
ユーザー 37zigen37zigen
提出日時 2018-08-05 19:38:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 1,178 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 79,296 KB
実行使用メモリ 80,064 KB
最終ジャッジ日時 2024-06-28 16:53:56
合計ジャッジ時間 8,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,052 KB
testcase_01 AC 130 ms
41,404 KB
testcase_02 AC 130 ms
41,072 KB
testcase_03 AC 131 ms
41,168 KB
testcase_04 AC 129 ms
41,288 KB
testcase_05 AC 130 ms
41,268 KB
testcase_06 AC 126 ms
41,264 KB
testcase_07 AC 116 ms
40,200 KB
testcase_08 AC 132 ms
41,336 KB
testcase_09 AC 123 ms
40,184 KB
testcase_10 AC 131 ms
40,972 KB
testcase_11 AC 119 ms
40,548 KB
testcase_12 AC 133 ms
41,240 KB
testcase_13 AC 296 ms
58,332 KB
testcase_14 AC 367 ms
71,432 KB
testcase_15 AC 318 ms
61,408 KB
testcase_16 AC 271 ms
51,444 KB
testcase_17 AC 289 ms
58,996 KB
testcase_18 AC 395 ms
80,064 KB
testcase_19 AC 372 ms
71,500 KB
testcase_20 AC 279 ms
55,460 KB
testcase_21 AC 256 ms
51,616 KB
testcase_22 AC 320 ms
61,332 KB
testcase_23 AC 131 ms
41,164 KB
testcase_24 AC 368 ms
79,780 KB
testcase_25 AC 338 ms
78,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long[][] A = new long[N][2];
		for (int i = 0; i < N; ++i) {
			A[i][0] = sc.nextLong();
			A[i][1] = sc.nextLong();
		}
		Arrays.sort(A, new Comparator<long[]>() {
			@Override
			public int compare(long[] o1, long[] o2) {
				return -Long.compare(o1[1], o2[1]);
			}
		});
		long[][] dp = new long[N + 1][N + 1];
		for (int i = 0; i < dp.length; ++i)
			for (int j = 0; j < dp[i].length; ++j)
				dp[i][j] = Long.MAX_VALUE / 3;
		dp[0][0] = 0;
		for (int i = 0; i < N; ++i) {
			for (int j = 0; j <= N; ++j) {
				if (j + 1 <= N)
					dp[i + 1][j + 1] = Math.min(dp[i + 1][j + 1], dp[i][j] + A[i][0] + A[i][1] * j);
				dp[i + 1][j] = Math.min(dp[i + 1][j], dp[i][j]);
			}
		}
		int sub = 0;
		for (int i = 0, res = N; res > 0; ++i) {
			--res;
			if (i % 2 == 1 && res > 0) {
				--res;
				++sub;
			}
		}
		System.out.println(dp[N][N - sub]);
	}

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