結果

問題 No.771 しおり
ユーザー GrenacheGrenache
提出日時 2019-05-07 19:57:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 1,324 bytes
コンパイル時間 3,609 ms
コンパイル使用メモリ 78,100 KB
実行使用メモリ 103,000 KB
最終ジャッジ日時 2024-07-22 07:13:55
合計ジャッジ時間 15,866 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
103,000 KB
testcase_01 AC 198 ms
59,336 KB
testcase_02 AC 138 ms
54,344 KB
testcase_03 AC 137 ms
54,244 KB
testcase_04 AC 140 ms
54,180 KB
testcase_05 AC 138 ms
54,216 KB
testcase_06 AC 134 ms
54,232 KB
testcase_07 AC 137 ms
54,252 KB
testcase_08 AC 142 ms
54,220 KB
testcase_09 AC 135 ms
54,184 KB
testcase_10 AC 137 ms
53,872 KB
testcase_11 AC 138 ms
54,216 KB
testcase_12 AC 139 ms
54,412 KB
testcase_13 AC 137 ms
53,952 KB
testcase_14 AC 145 ms
54,276 KB
testcase_15 AC 137 ms
54,036 KB
testcase_16 AC 140 ms
54,456 KB
testcase_17 AC 141 ms
53,948 KB
testcase_18 AC 138 ms
54,092 KB
testcase_19 AC 137 ms
53,856 KB
testcase_20 AC 136 ms
54,124 KB
testcase_21 AC 137 ms
54,232 KB
testcase_22 AC 139 ms
54,260 KB
testcase_23 AC 137 ms
54,176 KB
testcase_24 AC 139 ms
54,064 KB
testcase_25 AC 335 ms
71,688 KB
testcase_26 AC 158 ms
54,528 KB
testcase_27 AC 197 ms
58,724 KB
testcase_28 AC 235 ms
63,304 KB
testcase_29 AC 195 ms
58,724 KB
testcase_30 AC 497 ms
101,708 KB
testcase_31 AC 513 ms
102,352 KB
testcase_32 AC 165 ms
54,328 KB
testcase_33 AC 524 ms
102,468 KB
testcase_34 AC 507 ms
102,240 KB
testcase_35 AC 170 ms
53,976 KB
testcase_36 AC 152 ms
54,072 KB
testcase_37 AC 150 ms
54,144 KB
testcase_38 AC 167 ms
54,372 KB
testcase_39 AC 151 ms
54,216 KB
testcase_40 AC 322 ms
71,744 KB
testcase_41 AC 519 ms
102,428 KB
testcase_42 AC 501 ms
102,504 KB
testcase_43 AC 199 ms
59,296 KB
testcase_44 AC 527 ms
102,452 KB
testcase_45 AC 515 ms
102,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder771 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final long INF = Long.MAX_VALUE;

		int n = sc.nextInt();

		int[] a = new int[n];
		int[] b = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
			b[i] = sc.nextInt();
		}

		int m = 0x1 << n;
		long[][] dp = new long[n][m];
		for (int i = 0; i < n; i++) {
			Arrays.fill(dp[i], INF);
			dp[i][0x1 << i] = 0;
		}
		for (int i = 1; i < m; i++) {
			for (int j = 0; j < n; j++) {
				if ((i & 0x1 << j) == 0) {
					continue;
				}

				int d1 = b[j] - a[j];
				for (int k = 0; k < n; k++) {
					if ((i & 0x1 << k) != 0) {
						continue;
					}

					int d2 = a[k];
					dp[k][i | 0x1 << k] = Math.min(dp[k][i | 0x1 << k], Math.max(d1 + d2, dp[j][i]));
				}
			}
		}
		
		long min = INF;
		for (int i = 0; i < n; i++) {
//			pr.println(Arrays.toString(dp[i]));
			min = Math.min(min, dp[i][m - 1]);
		}
		
		pr.println(min);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0