結果

問題 No.733 分身並列コーディング
ユーザー tentententen
提出日時 2021-05-13 11:51:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 330 ms / 1,500 ms
コード長 1,532 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 77,956 KB
実行使用メモリ 53,492 KB
最終ジャッジ日時 2024-09-25 01:20:30
合計ジャッジ時間 11,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,432 KB
testcase_01 AC 55 ms
50,440 KB
testcase_02 AC 55 ms
50,252 KB
testcase_03 AC 328 ms
51,868 KB
testcase_04 AC 286 ms
51,620 KB
testcase_05 AC 296 ms
51,712 KB
testcase_06 AC 54 ms
50,304 KB
testcase_07 AC 303 ms
51,644 KB
testcase_08 AC 305 ms
51,388 KB
testcase_09 AC 152 ms
51,452 KB
testcase_10 AC 82 ms
51,660 KB
testcase_11 AC 85 ms
51,480 KB
testcase_12 AC 54 ms
50,364 KB
testcase_13 AC 55 ms
49,992 KB
testcase_14 AC 104 ms
51,412 KB
testcase_15 AC 80 ms
50,972 KB
testcase_16 AC 56 ms
49,884 KB
testcase_17 AC 55 ms
50,220 KB
testcase_18 AC 84 ms
51,604 KB
testcase_19 AC 151 ms
51,652 KB
testcase_20 AC 152 ms
51,876 KB
testcase_21 AC 111 ms
51,648 KB
testcase_22 AC 288 ms
51,524 KB
testcase_23 AC 108 ms
51,644 KB
testcase_24 AC 101 ms
51,472 KB
testcase_25 AC 54 ms
50,372 KB
testcase_26 AC 54 ms
50,416 KB
testcase_27 AC 82 ms
51,128 KB
testcase_28 AC 303 ms
51,676 KB
testcase_29 AC 317 ms
53,492 KB
testcase_30 AC 287 ms
51,752 KB
testcase_31 AC 286 ms
51,524 KB
testcase_32 AC 89 ms
51,472 KB
testcase_33 AC 87 ms
51,604 KB
testcase_34 AC 91 ms
51,604 KB
testcase_35 AC 88 ms
51,912 KB
testcase_36 AC 114 ms
52,656 KB
testcase_37 AC 89 ms
51,748 KB
testcase_38 AC 287 ms
51,756 KB
testcase_39 AC 289 ms
51,536 KB
testcase_40 AC 287 ms
51,900 KB
testcase_41 AC 88 ms
51,412 KB
testcase_42 AC 87 ms
51,784 KB
testcase_43 AC 87 ms
51,512 KB
testcase_44 AC 287 ms
51,608 KB
testcase_45 AC 287 ms
51,668 KB
testcase_46 AC 330 ms
51,604 KB
testcase_47 AC 291 ms
51,776 KB
testcase_48 AC 286 ms
51,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 && total <= t; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                total += times[j];
            }
            if (total <= t) {
                dp[i] = 1;
            }
            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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0