結果

問題 No.771 しおり
ユーザー tentententen
提出日時 2021-01-19 11:17:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 62,308 KB
最終ジャッジ日時 2024-07-22 07:25:30
合計ジャッジ時間 18,274 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 724 ms
61,892 KB
testcase_01 AC 193 ms
43,624 KB
testcase_02 AC 134 ms
41,024 KB
testcase_03 AC 135 ms
41,088 KB
testcase_04 AC 133 ms
41,252 KB
testcase_05 AC 136 ms
41,256 KB
testcase_06 AC 133 ms
41,356 KB
testcase_07 AC 128 ms
41,288 KB
testcase_08 AC 140 ms
41,292 KB
testcase_09 AC 133 ms
41,132 KB
testcase_10 AC 131 ms
41,796 KB
testcase_11 AC 133 ms
41,592 KB
testcase_12 AC 120 ms
40,240 KB
testcase_13 AC 132 ms
41,144 KB
testcase_14 AC 143 ms
41,528 KB
testcase_15 AC 132 ms
41,148 KB
testcase_16 AC 134 ms
40,880 KB
testcase_17 AC 119 ms
40,288 KB
testcase_18 AC 134 ms
41,380 KB
testcase_19 AC 141 ms
41,340 KB
testcase_20 AC 139 ms
40,988 KB
testcase_21 AC 133 ms
41,304 KB
testcase_22 AC 135 ms
41,152 KB
testcase_23 AC 119 ms
39,864 KB
testcase_24 AC 133 ms
41,300 KB
testcase_25 AC 375 ms
51,396 KB
testcase_26 AC 143 ms
41,540 KB
testcase_27 AC 189 ms
43,192 KB
testcase_28 AC 236 ms
47,880 KB
testcase_29 AC 188 ms
43,564 KB
testcase_30 AC 701 ms
62,096 KB
testcase_31 AC 726 ms
62,224 KB
testcase_32 AC 163 ms
41,772 KB
testcase_33 AC 726 ms
61,868 KB
testcase_34 AC 713 ms
61,952 KB
testcase_35 AC 163 ms
41,964 KB
testcase_36 AC 132 ms
40,824 KB
testcase_37 AC 144 ms
41,280 KB
testcase_38 AC 167 ms
41,832 KB
testcase_39 AC 146 ms
41,600 KB
testcase_40 AC 378 ms
51,412 KB
testcase_41 AC 728 ms
62,308 KB
testcase_42 AC 722 ms
62,152 KB
testcase_43 AC 190 ms
43,056 KB
testcase_44 AC 697 ms
62,276 KB
testcase_45 AC 694 ms
61,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int[] positions;
    static int[] sizes;
    static int[][] dp;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		positions = new int[n];
		sizes = new int[n];
		for (int i = 0; i < n; i++) {
		    positions[i] = sc.nextInt();
		    sizes[i] = sc.nextInt();
		}
		dp = new int[n][1 << n];
		for (int[] arr : dp) {
		    Arrays.fill(arr, -1);
		}
		int min = Integer.MAX_VALUE;
		for (int i = 0; i < n; i++) {
		    min = Math.min(min, dfw(i, (1 << n) - 1));
		}
		System.out.println(min);
	}
	
	static int dfw(int idx, int mask) {
	    if (dp[idx][mask] < 0) {
	        int next = ((1 << idx) ^ mask);
	        if (next == 0) {
	            dp[idx][mask] = 0;
	            return 0;
	        }
	        int min = Integer.MAX_VALUE;
	        for (int i = 0; i < n; i++) {
	            if (((1 << i) & next) == 0) {
	                continue;
	            }
	            int length = sizes[idx] - positions[idx] + positions[i];
	            min = Math.min(min, Math.max(length,dfw(i, next)));
	        }
	        dp[idx][mask] = min;
	    }
	    return dp[idx][mask];
	}
}
0