結果

問題 No.733 分身並列コーディング
ユーザー tentententen
提出日時 2021-12-06 14:26:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 305 ms / 1,500 ms
コード長 1,752 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 77,788 KB
実行使用メモリ 51,700 KB
最終ジャッジ日時 2024-07-07 09:04:11
合計ジャッジ時間 10,697 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,896 KB
testcase_01 AC 50 ms
50,344 KB
testcase_02 AC 49 ms
50,360 KB
testcase_03 AC 290 ms
51,564 KB
testcase_04 AC 298 ms
51,364 KB
testcase_05 AC 62 ms
50,292 KB
testcase_06 AC 50 ms
50,292 KB
testcase_07 AC 239 ms
51,412 KB
testcase_08 AC 226 ms
51,308 KB
testcase_09 AC 160 ms
51,576 KB
testcase_10 AC 75 ms
51,568 KB
testcase_11 AC 74 ms
51,476 KB
testcase_12 AC 48 ms
50,152 KB
testcase_13 AC 49 ms
50,116 KB
testcase_14 AC 102 ms
51,532 KB
testcase_15 AC 76 ms
51,156 KB
testcase_16 AC 49 ms
50,264 KB
testcase_17 AC 49 ms
50,212 KB
testcase_18 AC 75 ms
51,320 KB
testcase_19 AC 148 ms
51,580 KB
testcase_20 AC 151 ms
51,680 KB
testcase_21 AC 92 ms
51,536 KB
testcase_22 AC 305 ms
51,648 KB
testcase_23 AC 100 ms
51,300 KB
testcase_24 AC 91 ms
51,500 KB
testcase_25 AC 51 ms
50,312 KB
testcase_26 AC 56 ms
50,236 KB
testcase_27 AC 78 ms
51,264 KB
testcase_28 AC 244 ms
51,392 KB
testcase_29 AC 296 ms
51,332 KB
testcase_30 AC 255 ms
51,524 KB
testcase_31 AC 301 ms
51,508 KB
testcase_32 AC 79 ms
51,360 KB
testcase_33 AC 82 ms
51,528 KB
testcase_34 AC 78 ms
51,668 KB
testcase_35 AC 89 ms
51,676 KB
testcase_36 AC 80 ms
51,700 KB
testcase_37 AC 85 ms
51,348 KB
testcase_38 AC 300 ms
51,324 KB
testcase_39 AC 304 ms
51,536 KB
testcase_40 AC 254 ms
51,300 KB
testcase_41 AC 77 ms
51,540 KB
testcase_42 AC 87 ms
51,580 KB
testcase_43 AC 83 ms
51,584 KB
testcase_44 AC 294 ms
51,340 KB
testcase_45 AC 303 ms
51,460 KB
testcase_46 AC 298 ms
51,264 KB
testcase_47 AC 300 ms
51,588 KB
testcase_48 AC 300 ms
51,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int time = sc.nextInt();
        int n = sc.nextInt();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        int[] totals = new int[1 << n];
        int[] counts = new int[1 << n];
        for (int i = 0; i < (1 << n); i++) {
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                totals[i] = totals[i ^ (1 << j)] + values[j];
                break;
            }
            if (totals[i] <= time) {
                counts[i] = 1;
                continue;
            }
            counts[i] = Integer.MAX_VALUE / 2;
            for (int j = i; j > 0; j = ((j - 1) & i)) {
                counts[i] = Math.min(counts[i], counts[j] + counts[j ^ i]);
            }
        }
        System.out.println(counts[(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 next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0