結果

問題 No.771 しおり
ユーザー htensaihtensai
提出日時 2020-01-29 13:44:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 1,383 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 72,784 KB
最終ジャッジ日時 2024-07-22 07:21:18
合計ジャッジ時間 10,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 392 ms
72,352 KB
testcase_01 AC 94 ms
53,872 KB
testcase_02 AC 52 ms
50,192 KB
testcase_03 AC 51 ms
50,284 KB
testcase_04 AC 53 ms
50,380 KB
testcase_05 AC 53 ms
49,924 KB
testcase_06 AC 54 ms
49,992 KB
testcase_07 AC 53 ms
50,284 KB
testcase_08 AC 54 ms
50,264 KB
testcase_09 AC 50 ms
50,164 KB
testcase_10 AC 51 ms
49,936 KB
testcase_11 AC 52 ms
50,276 KB
testcase_12 AC 51 ms
50,324 KB
testcase_13 AC 52 ms
50,008 KB
testcase_14 AC 55 ms
50,384 KB
testcase_15 AC 49 ms
50,292 KB
testcase_16 AC 51 ms
49,928 KB
testcase_17 AC 50 ms
50,320 KB
testcase_18 AC 51 ms
50,364 KB
testcase_19 AC 51 ms
50,320 KB
testcase_20 AC 49 ms
50,360 KB
testcase_21 AC 53 ms
50,256 KB
testcase_22 AC 52 ms
50,112 KB
testcase_23 AC 54 ms
49,964 KB
testcase_24 AC 54 ms
50,380 KB
testcase_25 AC 217 ms
60,136 KB
testcase_26 AC 75 ms
50,564 KB
testcase_27 AC 96 ms
53,644 KB
testcase_28 AC 132 ms
56,348 KB
testcase_29 AC 99 ms
54,096 KB
testcase_30 AC 455 ms
72,564 KB
testcase_31 AC 424 ms
72,784 KB
testcase_32 AC 83 ms
51,396 KB
testcase_33 AC 401 ms
72,748 KB
testcase_34 AC 437 ms
72,580 KB
testcase_35 AC 82 ms
51,404 KB
testcase_36 AC 61 ms
50,032 KB
testcase_37 AC 61 ms
50,440 KB
testcase_38 AC 82 ms
51,336 KB
testcase_39 AC 64 ms
50,380 KB
testcase_40 AC 210 ms
60,348 KB
testcase_41 AC 406 ms
72,776 KB
testcase_42 AC 440 ms
72,740 KB
testcase_43 AC 95 ms
53,880 KB
testcase_44 AC 437 ms
72,360 KB
testcase_45 AC 444 ms
72,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] befores;
    static int[] afters;
    static int[][] dp;
    static int n;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        n = Integer.parseInt(br.readLine());
        befores = new int[n];
        afters = new int[n];
        for (int i = 0; i < n; i++) {
            String[] line = br.readLine().split(" ", 2);
            befores[i] = Integer.parseInt(line[0]);
            afters[i] = Integer.parseInt(line[1]) - befores[i];
        }
        dp = new int[n + 1][1 << n];
        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 key) {
        if (key == 1 << idx) {
            return 0;
        }
        if (dp[idx][key] != 0) {
            return dp[idx][key];
        }
        int min = Integer.MAX_VALUE;
        int next = key ^ (1 << idx);
        for (int i = 0; i < n; i++) {
            int x = 1 << i;
            if ((next & x) == 0) {
                continue;
            }
            min = Math.min(min, Math.max(dfw(i, next), afters[i] + befores[idx]));
        }
        dp[idx][key] = min;
        return min;
    }
}
0