結果

問題 No.286 Modulo Discount Store
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-25 22:30:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 2,907 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-07-02 06:19:25
合計ジャッジ時間 10,100 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,688 KB
testcase_01 AC 127 ms
53,880 KB
testcase_02 AC 126 ms
53,208 KB
testcase_03 AC 118 ms
53,832 KB
testcase_04 AC 105 ms
53,924 KB
testcase_05 AC 115 ms
53,960 KB
testcase_06 AC 138 ms
54,120 KB
testcase_07 AC 114 ms
54,020 KB
testcase_08 AC 111 ms
52,680 KB
testcase_09 AC 107 ms
52,964 KB
testcase_10 AC 143 ms
53,920 KB
testcase_11 AC 113 ms
52,972 KB
testcase_12 AC 117 ms
53,796 KB
testcase_13 AC 115 ms
53,164 KB
testcase_14 AC 123 ms
53,692 KB
testcase_15 AC 106 ms
52,800 KB
testcase_16 AC 110 ms
53,028 KB
testcase_17 AC 147 ms
53,820 KB
testcase_18 AC 141 ms
54,332 KB
testcase_19 AC 102 ms
52,928 KB
testcase_20 AC 113 ms
53,968 KB
testcase_21 AC 124 ms
54,096 KB
testcase_22 AC 122 ms
54,060 KB
testcase_23 AC 115 ms
53,020 KB
testcase_24 AC 127 ms
53,980 KB
testcase_25 AC 103 ms
52,660 KB
testcase_26 AC 110 ms
53,808 KB
testcase_27 AC 112 ms
53,540 KB
testcase_28 AC 134 ms
53,912 KB
testcase_29 AC 103 ms
53,056 KB
testcase_30 AC 118 ms
54,004 KB
testcase_31 AC 119 ms
53,980 KB
testcase_32 AC 116 ms
53,816 KB
testcase_33 AC 112 ms
52,908 KB
testcase_34 AC 102 ms
52,692 KB
testcase_35 AC 104 ms
52,948 KB
testcase_36 AC 115 ms
53,932 KB
testcase_37 AC 113 ms
53,824 KB
testcase_38 AC 119 ms
53,976 KB
testcase_39 AC 131 ms
53,084 KB
testcase_40 AC 114 ms
54,028 KB
testcase_41 AC 118 ms
53,908 KB
testcase_42 AC 116 ms
54,060 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[] m = new int[n];
    for(int i = 0; i < n; i++) {
      m[i] = sc.nextInt();
    }
    int p = (int)Math.pow(2, n);
    int[] sum = new int[p];
    int[] dp = new int[p];
    for(int i = 1; i < p; i++) {
      for(int j = 0; j < n; j++) {
        if((i & (1 << j)) != 0) sum[i] = (sum[i] + m[j]) % 1000;
      }
    }
    for(int i = 0; i < p; i++) {
      dp[i] = Integer.MAX_VALUE;
    }
    for(int i = 0; i < n; i++) {
      dp[(int)(1 << i)] = m[i];
    }
    for(int i = 1; i < p; i++) {
      if(dp[i] == Integer.MAX_VALUE) {
      for(int j = 0; j < n; j++) {
        if((i & (1 << j)) != 0) {
          int i1 = i - (1 << j);
          int m1 = (int)Math.max(m[j] - sum[i1], 0);
          dp[i] = Math.min(dp[i], dp[i1] + m1);
        }
      }
      }
    }
    System.out.println(dp[p - 1]);
  }
}
0