結果

問題 No.50 おもちゃ箱
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-27 21:22:06
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,305 bytes
コンパイル時間 2,826 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-07-02 14:48:27
合計ジャッジ時間 9,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,176 KB
testcase_01 AC 135 ms
41,128 KB
testcase_02 AC 130 ms
41,268 KB
testcase_03 AC 129 ms
41,420 KB
testcase_04 AC 130 ms
41,056 KB
testcase_05 AC 132 ms
41,244 KB
testcase_06 AC 130 ms
41,148 KB
testcase_07 AC 130 ms
41,252 KB
testcase_08 AC 128 ms
41,424 KB
testcase_09 AC 127 ms
41,168 KB
testcase_10 AC 127 ms
41,048 KB
testcase_11 AC 131 ms
41,472 KB
testcase_12 AC 117 ms
40,300 KB
testcase_13 AC 129 ms
41,204 KB
testcase_14 AC 130 ms
41,196 KB
testcase_15 AC 133 ms
41,300 KB
testcase_16 AC 132 ms
41,176 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 134 ms
41,444 KB
testcase_20 AC 134 ms
41,472 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 129 ms
41,132 KB
testcase_25 AC 128 ms
41,032 KB
testcase_26 AC 128 ms
41,352 KB
testcase_27 AC 131 ms
41,488 KB
testcase_28 AC 132 ms
41,340 KB
testcase_29 WA -
testcase_30 AC 129 ms
41,452 KB
testcase_31 AC 128 ms
41,228 KB
testcase_32 AC 120 ms
40,448 KB
testcase_33 AC 117 ms
40,156 KB
testcase_34 AC 130 ms
41,304 KB
testcase_35 AC 132 ms
41,192 KB
testcase_36 AC 134 ms
41,236 KB
testcase_37 AC 125 ms
40,140 KB
testcase_38 WA -
testcase_39 AC 130 ms
41,396 KB
testcase_40 AC 133 ms
41,440 KB
testcase_41 AC 134 ms
41,348 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(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