結果
問題 | No.733 分身並列コーディング |
ユーザー | htensai |
提出日時 | 2020-01-30 16:34:28 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,472 bytes |
コンパイル時間 | 2,264 ms |
コンパイル使用メモリ | 78,900 KB |
実行使用メモリ | 61,212 KB |
最終ジャッジ日時 | 2024-09-16 03:38:33 |
合計ジャッジ時間 | 6,680 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
42,316 KB |
testcase_01 | AC | 50 ms
36,836 KB |
testcase_02 | AC | 52 ms
36,548 KB |
testcase_03 | AC | 367 ms
55,396 KB |
testcase_04 | AC | 389 ms
54,436 KB |
testcase_05 | AC | 145 ms
50,608 KB |
testcase_06 | AC | 51 ms
36,832 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
import java.util.*; import java.io.*; public class Main { 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()); } HashSet<Integer>[] dp= new HashSet[n]; dp[0] = new HashSet<>(); 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) { dp[0].add(i); } } for (int i = 1; i <= n; i++) { if (dp[i - 1].contains((1 << n) - 1)) { System.out.println(i); return; } dp[i] = new HashSet<>(); for (int x : dp[i - 1]) { for (int y : dp[0]) { if ((x & y) != 0) { continue; } if (!dp[i - 1].contains(x | y)) { dp[i].add(x | y); } } } } } }