結果

問題 No.733 分身並列コーディング
ユーザー tentententen
提出日時 2023-06-16 08:39:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 464 ms / 1,500 ms
コード長 2,317 bytes
コンパイル時間 3,152 ms
コンパイル使用メモリ 92,592 KB
実行使用メモリ 39,456 KB
最終ジャッジ日時 2024-06-24 03:26:34
合計ジャッジ時間 14,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,228 KB
testcase_01 AC 53 ms
36,752 KB
testcase_02 AC 53 ms
36,768 KB
testcase_03 AC 391 ms
39,376 KB
testcase_04 AC 397 ms
39,188 KB
testcase_05 AC 65 ms
38,456 KB
testcase_06 AC 52 ms
37,080 KB
testcase_07 AC 389 ms
39,308 KB
testcase_08 AC 359 ms
39,156 KB
testcase_09 AC 180 ms
38,836 KB
testcase_10 AC 81 ms
38,380 KB
testcase_11 AC 80 ms
38,264 KB
testcase_12 AC 52 ms
37,040 KB
testcase_13 AC 53 ms
37,000 KB
testcase_14 AC 112 ms
38,432 KB
testcase_15 AC 80 ms
38,068 KB
testcase_16 AC 52 ms
37,056 KB
testcase_17 AC 52 ms
37,180 KB
testcase_18 AC 81 ms
38,560 KB
testcase_19 AC 187 ms
38,896 KB
testcase_20 AC 208 ms
38,784 KB
testcase_21 AC 108 ms
38,396 KB
testcase_22 AC 396 ms
39,312 KB
testcase_23 AC 114 ms
38,416 KB
testcase_24 AC 120 ms
38,424 KB
testcase_25 AC 54 ms
37,020 KB
testcase_26 AC 53 ms
36,996 KB
testcase_27 AC 82 ms
38,132 KB
testcase_28 AC 341 ms
39,140 KB
testcase_29 AC 400 ms
39,148 KB
testcase_30 AC 396 ms
39,132 KB
testcase_31 AC 397 ms
39,384 KB
testcase_32 AC 89 ms
38,428 KB
testcase_33 AC 88 ms
38,296 KB
testcase_34 AC 86 ms
38,444 KB
testcase_35 AC 88 ms
38,664 KB
testcase_36 AC 88 ms
38,360 KB
testcase_37 AC 88 ms
38,424 KB
testcase_38 AC 393 ms
39,456 KB
testcase_39 AC 395 ms
39,200 KB
testcase_40 AC 464 ms
39,272 KB
testcase_41 AC 89 ms
38,588 KB
testcase_42 AC 88 ms
38,284 KB
testcase_43 AC 92 ms
38,292 KB
testcase_44 AC 391 ms
39,456 KB
testcase_45 AC 394 ms
39,160 KB
testcase_46 AC 396 ms
39,444 KB
testcase_47 AC 396 ms
39,276 KB
testcase_48 AC 395 ms
39,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int[] sum = new int[1 << n];
        int[] dp = new int[1 << n];
        for (int i = 0; i < (1 << n); i++) {
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) > 0) {
                    sum[i] = sum[i ^ (1 << j)] + values[j];
                    break;
                }
            }
            if (sum[i] <= t) {
                dp[i] = 1;
                continue;
            }
            dp[i] = Integer.MAX_VALUE;
            for (int j = i; j > 0; j = ((j - 1) & i)) {
                if (j == i) {
                    continue;
                }
                dp[i] = Math.min(dp[i], dp[i ^ j] + dp[j]);
            }
        }
        System.out.println(dp[(1 << n) - 1]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0