結果

問題 No.50 おもちゃ箱
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-27 21:24:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,323 bytes
コンパイル時間 3,021 ms
コンパイル使用メモリ 77,324 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-07-02 11:16:19
合計ジャッジ時間 9,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,252 KB
testcase_01 AC 136 ms
41,240 KB
testcase_02 AC 138 ms
41,324 KB
testcase_03 AC 135 ms
41,616 KB
testcase_04 AC 135 ms
41,388 KB
testcase_05 AC 136 ms
41,128 KB
testcase_06 AC 134 ms
41,612 KB
testcase_07 AC 136 ms
41,484 KB
testcase_08 AC 136 ms
41,504 KB
testcase_09 AC 134 ms
41,388 KB
testcase_10 AC 132 ms
41,180 KB
testcase_11 AC 132 ms
41,776 KB
testcase_12 AC 132 ms
40,984 KB
testcase_13 AC 132 ms
41,672 KB
testcase_14 AC 135 ms
41,388 KB
testcase_15 AC 134 ms
41,312 KB
testcase_16 AC 135 ms
41,208 KB
testcase_17 AC 136 ms
41,292 KB
testcase_18 AC 138 ms
41,404 KB
testcase_19 AC 138 ms
41,496 KB
testcase_20 AC 135 ms
41,132 KB
testcase_21 AC 135 ms
41,248 KB
testcase_22 AC 136 ms
41,292 KB
testcase_23 AC 136 ms
41,364 KB
testcase_24 AC 132 ms
41,384 KB
testcase_25 AC 133 ms
41,568 KB
testcase_26 AC 135 ms
41,092 KB
testcase_27 AC 134 ms
41,328 KB
testcase_28 AC 136 ms
41,732 KB
testcase_29 WA -
testcase_30 AC 134 ms
41,652 KB
testcase_31 AC 134 ms
41,452 KB
testcase_32 AC 136 ms
41,896 KB
testcase_33 AC 136 ms
41,360 KB
testcase_34 AC 138 ms
41,260 KB
testcase_35 AC 136 ms
41,236 KB
testcase_36 AC 138 ms
41,236 KB
testcase_37 AC 135 ms
41,560 KB
testcase_38 WA -
testcase_39 AC 136 ms
41,248 KB
testcase_40 AC 136 ms
40,996 KB
testcase_41 AC 138 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int[] a = new int[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextInt();
    }
    int m = sc.nextInt();
    int[] b = new int[m];
    for(int i = 0; i < m; i++) {
      b[i] = sc.nextInt();
    }
    Arrays.sort(b);
    int[] sumb = new int[m + 1];
    for(int i = 1; i < m + 1; i++) {
      sumb[i] = sumb[i - 1] + b[m - i];
    }
    int p = (int)Math.pow(2, n);
    int[] dp = new int[p];
    int[] suma = new int[p];
    for(int i = 1; i < p; i++) {
      for(int j = 0; j < n; j++) {
        if((i & (1 << j)) != 0) suma[i] += a[j];
      }
    }

    for(int i = 0; i < p; i++) {
      dp[i] = 100;
    }

    dp[0] = 0;

    for(int i = 1; i < p; i++) {
      for(int j = 0; j < n; j++) {
        if((i & (1 << j)) != 0) {
          int i1 = i - (1 << j);
          if(dp[i1] >= 0) {
            int r = sumb[dp[i1]] - suma[i1];
            if(r >= a[j]) {
              dp[i] = Math.min(dp[i], dp[i1]);
            } else {
              if((dp[i1] < m) && (a[j] <= b[m - dp[i1] - 1]))  dp[i] = Math.min(dp[i], dp[i1] + 1);
            }
          } 
        }
      }
      if(dp[i] == 100) dp[i] = -1;
    }
    System.out.println(dp[p - 1]);
  }
}
0