結果

問題 No.733 分身並列コーディング
ユーザー htensaihtensai
提出日時 2020-01-30 16:48:58
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,503 bytes
コンパイル時間 3,886 ms
コンパイル使用メモリ 77,548 KB
実行使用メモリ 48,148 KB
最終ジャッジ日時 2024-09-16 03:39:07
合計ジャッジ時間 16,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
42,068 KB
testcase_01 AC 52 ms
36,716 KB
testcase_02 AC 53 ms
36,940 KB
testcase_03 AC 144 ms
41,720 KB
testcase_04 AC 150 ms
41,476 KB
testcase_05 AC 130 ms
48,116 KB
testcase_06 AC 52 ms
36,584 KB
testcase_07 AC 205 ms
45,976 KB
testcase_08 AC 122 ms
45,300 KB
testcase_09 AC 206 ms
41,776 KB
testcase_10 AC 133 ms
39,304 KB
testcase_11 AC 89 ms
38,128 KB
testcase_12 AC 52 ms
36,332 KB
testcase_13 AC 51 ms
36,832 KB
testcase_14 AC 128 ms
40,576 KB
testcase_15 AC 94 ms
38,920 KB
testcase_16 AC 53 ms
36,720 KB
testcase_17 AC 54 ms
36,728 KB
testcase_18 AC 144 ms
39,480 KB
testcase_19 AC 208 ms
40,860 KB
testcase_20 AC 415 ms
41,840 KB
testcase_21 AC 139 ms
40,732 KB
testcase_22 AC 430 ms
43,644 KB
testcase_23 AC 185 ms
40,692 KB
testcase_24 AC 386 ms
40,904 KB
testcase_25 AC 57 ms
36,992 KB
testcase_26 AC 52 ms
36,708 KB
testcase_27 AC 96 ms
38,440 KB
testcase_28 AC 152 ms
45,480 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 186 ms
40,028 KB
testcase_33 AC 197 ms
40,024 KB
testcase_34 AC 161 ms
39,876 KB
testcase_35 AC 207 ms
39,888 KB
testcase_36 AC 190 ms
39,880 KB
testcase_37 AC 210 ms
40,108 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] dp;
    static HashSet<Integer> ones = new HashSet<>();
    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) {
                ones.add(i);
                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 x : ones) {
            if ((x & key) != x) {
                continue;
            }
            min = Math.min(min, dfw(x ^ key) + 1);
            if (min == 2) {
                break;
            }
        }
        dp[key] = min;
        return min;
    }
}
0