結果

問題 No.771 しおり
ユーザー htensaihtensai
提出日時 2020-01-29 13:38:35
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,454 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 60,596 KB
最終ジャッジ日時 2024-09-16 00:55:39
合計ジャッジ時間 31,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 234 ms
40,652 KB
testcase_02 AC 51 ms
36,820 KB
testcase_03 AC 51 ms
36,784 KB
testcase_04 AC 51 ms
36,880 KB
testcase_05 AC 52 ms
36,964 KB
testcase_06 AC 51 ms
36,516 KB
testcase_07 AC 51 ms
36,928 KB
testcase_08 AC 58 ms
36,972 KB
testcase_09 AC 50 ms
37,092 KB
testcase_10 AC 51 ms
36,668 KB
testcase_11 AC 52 ms
36,808 KB
testcase_12 AC 52 ms
37,068 KB
testcase_13 AC 51 ms
36,908 KB
testcase_14 AC 59 ms
36,984 KB
testcase_15 AC 52 ms
36,856 KB
testcase_16 AC 52 ms
37,024 KB
testcase_17 AC 54 ms
37,228 KB
testcase_18 AC 51 ms
37,088 KB
testcase_19 AC 52 ms
36,648 KB
testcase_20 AC 51 ms
36,992 KB
testcase_21 AC 51 ms
36,796 KB
testcase_22 AC 52 ms
36,796 KB
testcase_23 AC 52 ms
36,796 KB
testcase_24 AC 52 ms
36,976 KB
testcase_25 AC 998 ms
49,660 KB
testcase_26 AC 80 ms
38,776 KB
testcase_27 AC 235 ms
40,652 KB
testcase_28 AC 459 ms
45,924 KB
testcase_29 AC 235 ms
40,444 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 98 ms
38,824 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 98 ms
39,040 KB
testcase_36 AC 77 ms
38,296 KB
testcase_37 AC 78 ms
37,476 KB
testcase_38 AC 97 ms
38,956 KB
testcase_39 AC 77 ms
37,608 KB
testcase_40 AC 962 ms
50,156 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 234 ms
40,464 KB
testcase_44 TLE -
testcase_45 TLE -
権限があれば一括ダウンロードができます

ソースコード

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][(int)(Math.pow(2, n))];
        int min = Integer.MAX_VALUE;
        for (int i = 0; i < n; i++) {
            min = Math.min(min, dfw(i, (int)(Math.pow(2, n) - 1)));
        }
        System.out.println(min);
    }
    
    static int dfw(int idx, int key) {
        if (key == (int)(Math.pow(2, idx))) {
            return 0;
        }
        if (dp[idx][key] != 0) {
            return dp[idx][key];
        }
        int min = Integer.MAX_VALUE;
        int next = key ^ (int)(Math.pow(2, idx));
        for (int i = 0; i < n; i++) {
            int x = (int)(Math.pow(2, 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