結果

問題 No.771 しおり
ユーザー tentententen
提出日時 2022-10-20 15:14:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,149 ms / 2,000 ms
コード長 2,101 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 78,040 KB
実行使用メモリ 76,536 KB
最終ジャッジ日時 2024-07-22 07:32:06
合計ジャッジ時間 18,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,131 ms
76,272 KB
testcase_01 AC 158 ms
54,296 KB
testcase_02 AC 54 ms
50,240 KB
testcase_03 AC 55 ms
50,288 KB
testcase_04 AC 54 ms
50,112 KB
testcase_05 AC 54 ms
50,364 KB
testcase_06 AC 53 ms
50,268 KB
testcase_07 AC 55 ms
49,920 KB
testcase_08 AC 57 ms
50,512 KB
testcase_09 AC 54 ms
50,436 KB
testcase_10 AC 55 ms
50,152 KB
testcase_11 AC 54 ms
50,248 KB
testcase_12 AC 53 ms
50,448 KB
testcase_13 AC 52 ms
50,428 KB
testcase_14 AC 68 ms
50,608 KB
testcase_15 AC 53 ms
50,184 KB
testcase_16 AC 52 ms
50,468 KB
testcase_17 AC 55 ms
50,140 KB
testcase_18 AC 52 ms
50,164 KB
testcase_19 AC 54 ms
50,172 KB
testcase_20 AC 53 ms
50,296 KB
testcase_21 AC 53 ms
50,336 KB
testcase_22 AC 52 ms
50,408 KB
testcase_23 AC 51 ms
50,540 KB
testcase_24 AC 52 ms
50,368 KB
testcase_25 AC 503 ms
64,648 KB
testcase_26 AC 87 ms
52,024 KB
testcase_27 AC 149 ms
54,512 KB
testcase_28 AC 241 ms
57,084 KB
testcase_29 AC 149 ms
54,628 KB
testcase_30 AC 1,019 ms
76,124 KB
testcase_31 AC 1,027 ms
76,452 KB
testcase_32 AC 94 ms
52,232 KB
testcase_33 AC 1,076 ms
76,536 KB
testcase_34 AC 1,076 ms
76,476 KB
testcase_35 AC 93 ms
52,540 KB
testcase_36 AC 74 ms
51,244 KB
testcase_37 AC 74 ms
51,336 KB
testcase_38 AC 91 ms
52,236 KB
testcase_39 AC 79 ms
51,240 KB
testcase_40 AC 499 ms
64,852 KB
testcase_41 AC 1,149 ms
76,480 KB
testcase_42 AC 1,070 ms
76,168 KB
testcase_43 AC 151 ms
54,520 KB
testcase_44 AC 1,061 ms
76,524 KB
testcase_45 AC 1,034 ms
76,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] marks;
    static int[] books;
    static int[][] dp;
    static int n;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        n = sc.nextInt();
        marks = new int[n];
        books = new int[n];
        for (int i = 0; i < n; i++) {
            marks[i] = sc.nextInt();
            books[i] = sc.nextInt();
        }
        dp = new int[1 << n][n];
        int ans = Integer.MAX_VALUE;
        for (int i = 0; i < n; i++) {
            ans = Math.min(ans, dfw((1 << n) - 1, i));
        }
        System.out.println(ans);
    }
    
    static int dfw(int mask, int idx) {
        if (getPop(mask) == 1) {
            return 0;
        }
        if (dp[mask][idx] == 0) {
            dp[mask][idx] = Integer.MAX_VALUE / 2;
            for (int i = 0; i < n; i++) {
                if (i == idx || (mask & (1 << i)) == 0) {
                    continue;
                }
                dp[mask][idx] = Math.min(dp[mask][idx], Math.max(dfw(mask ^ (1 << idx), i), books[i] - marks[i] + marks[idx]));
            }
        }
        return dp[mask][idx];
    }
    
    static int getPop(int x) {
        int pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return pop;
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0