結果

問題 No.733 分身並列コーディング
ユーザー htensaihtensai
提出日時 2020-01-30 16:59:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 978 ms / 1,500 ms
コード長 1,390 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 76,524 KB
実行使用メモリ 40,476 KB
最終ジャッジ日時 2024-09-16 03:40:14
合計ジャッジ時間 20,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,984 KB
testcase_01 AC 51 ms
36,964 KB
testcase_02 AC 51 ms
36,872 KB
testcase_03 AC 945 ms
38,828 KB
testcase_04 AC 951 ms
39,312 KB
testcase_05 AC 82 ms
38,604 KB
testcase_06 AC 51 ms
37,068 KB
testcase_07 AC 92 ms
38,912 KB
testcase_08 AC 92 ms
38,952 KB
testcase_09 AC 375 ms
38,736 KB
testcase_10 AC 88 ms
38,300 KB
testcase_11 AC 88 ms
38,368 KB
testcase_12 AC 53 ms
36,552 KB
testcase_13 AC 51 ms
36,788 KB
testcase_14 AC 171 ms
38,516 KB
testcase_15 AC 74 ms
38,260 KB
testcase_16 AC 52 ms
36,824 KB
testcase_17 AC 51 ms
37,084 KB
testcase_18 AC 83 ms
38,352 KB
testcase_19 AC 364 ms
38,688 KB
testcase_20 AC 377 ms
39,088 KB
testcase_21 AC 172 ms
38,204 KB
testcase_22 AC 978 ms
40,476 KB
testcase_23 AC 173 ms
38,496 KB
testcase_24 AC 167 ms
38,368 KB
testcase_25 AC 53 ms
36,532 KB
testcase_26 AC 51 ms
36,828 KB
testcase_27 AC 72 ms
38,364 KB
testcase_28 AC 98 ms
39,420 KB
testcase_29 AC 944 ms
38,884 KB
testcase_30 AC 931 ms
38,680 KB
testcase_31 AC 946 ms
39,416 KB
testcase_32 AC 104 ms
38,280 KB
testcase_33 AC 102 ms
38,300 KB
testcase_34 AC 102 ms
38,284 KB
testcase_35 AC 106 ms
38,384 KB
testcase_36 AC 104 ms
38,332 KB
testcase_37 AC 107 ms
38,096 KB
testcase_38 AC 868 ms
38,528 KB
testcase_39 AC 870 ms
38,848 KB
testcase_40 AC 851 ms
38,988 KB
testcase_41 AC 104 ms
38,412 KB
testcase_42 AC 107 ms
38,096 KB
testcase_43 AC 104 ms
38,496 KB
testcase_44 AC 901 ms
38,656 KB
testcase_45 AC 876 ms
38,560 KB
testcase_46 AC 882 ms
38,892 KB
testcase_47 AC 891 ms
38,888 KB
testcase_48 AC 877 ms
38,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] dp;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int t = Integer.parseInt(br.readLine());
        int n = Integer.parseInt(br.readLine());
        int[] times = new int[n];
        for (int i = 0; i < n; i++) {
            times[i] = Integer.parseInt(br.readLine());
        }
        dp = new int[1 << n];
        for (int i = 1; i < (1 << n); i++) {
            int sum = 0;
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                sum += times[j];
                if (sum > t) {
                    break;
                }
            }
            if (sum <= t) {
                dp[i] = 1;
            }
        }
        System.out.println(dfw((1 << n) - 1));
    }
    
    static int dfw(int key) {
        if (key == 0) {
            return 0;
        }
        if (dp[key] != 0) {
            return dp[key];
        }
        int min = Integer.MAX_VALUE;
        for (int i = (key - 1) & key; i > 0; i = (i - 1) & key) {
            min = Math.min(min, dfw(i) + dfw(key ^ i));
            if (min == 2) {
                break;
            }
        }
        dp[key] = min;
        return min;
    }
}
0