結果

問題 No.733 分身並列コーディング
ユーザー tentententen
提出日時 2021-11-12 18:24:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 333 ms / 1,500 ms
コード長 1,739 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 77,884 KB
実行使用メモリ 53,196 KB
最終ジャッジ日時 2024-05-04 01:14:45
合計ジャッジ時間 10,180 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,480 KB
testcase_01 AC 61 ms
49,868 KB
testcase_02 AC 48 ms
50,240 KB
testcase_03 AC 249 ms
52,032 KB
testcase_04 AC 281 ms
51,532 KB
testcase_05 AC 71 ms
51,216 KB
testcase_06 AC 46 ms
50,200 KB
testcase_07 AC 248 ms
51,492 KB
testcase_08 AC 225 ms
51,624 KB
testcase_09 AC 152 ms
51,716 KB
testcase_10 AC 73 ms
51,520 KB
testcase_11 AC 69 ms
51,668 KB
testcase_12 AC 46 ms
50,420 KB
testcase_13 AC 45 ms
50,248 KB
testcase_14 AC 93 ms
51,740 KB
testcase_15 AC 75 ms
51,384 KB
testcase_16 AC 47 ms
49,860 KB
testcase_17 AC 45 ms
50,384 KB
testcase_18 AC 70 ms
51,816 KB
testcase_19 AC 130 ms
51,684 KB
testcase_20 AC 148 ms
51,760 KB
testcase_21 AC 106 ms
51,816 KB
testcase_22 AC 252 ms
51,640 KB
testcase_23 AC 90 ms
51,764 KB
testcase_24 AC 92 ms
51,776 KB
testcase_25 AC 46 ms
50,408 KB
testcase_26 AC 65 ms
50,004 KB
testcase_27 AC 71 ms
50,724 KB
testcase_28 AC 257 ms
51,508 KB
testcase_29 AC 302 ms
51,844 KB
testcase_30 AC 255 ms
51,888 KB
testcase_31 AC 252 ms
51,764 KB
testcase_32 AC 78 ms
51,756 KB
testcase_33 AC 81 ms
51,652 KB
testcase_34 AC 80 ms
51,688 KB
testcase_35 AC 75 ms
51,724 KB
testcase_36 AC 94 ms
51,692 KB
testcase_37 AC 80 ms
51,532 KB
testcase_38 AC 252 ms
51,668 KB
testcase_39 AC 255 ms
51,496 KB
testcase_40 AC 260 ms
53,196 KB
testcase_41 AC 82 ms
51,652 KB
testcase_42 AC 84 ms
51,772 KB
testcase_43 AC 77 ms
51,856 KB
testcase_44 AC 333 ms
51,584 KB
testcase_45 AC 247 ms
51,588 KB
testcase_46 AC 247 ms
51,764 KB
testcase_47 AC 266 ms
53,172 KB
testcase_48 AC 278 ms
51,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        int n = sc.nextInt();
        int[] times = new int[n];
        for (int i = 0; i < n; i++) {
            times[i] = sc.nextInt();
        }
        int[] dp = new int[1 << n];
        Arrays.fill(dp, Integer.MAX_VALUE / 2);
        for (int i = 1; i < (1 << n); i++) {
            int total = 0;
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                total += times[j];
            }
            if (total <= t) {
                dp[i] = 1;
                continue;
            }
            for (int j = i; j > 0; j = ((j - 1) & i)) {
                dp[i] = Math.min(dp[i], dp[j] + dp[i ^ j]);
            }
        }
        System.out.println(dp[(1 << n) - 1]);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0