結果

問題 No.286 Modulo Discount Store
ユーザー htensaihtensai
提出日時 2020-02-07 09:24:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,149 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 77,332 KB
実行使用メモリ 51,188 KB
最終ジャッジ日時 2024-09-25 07:13:59
合計ジャッジ時間 5,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,068 KB
testcase_01 AC 54 ms
50,216 KB
testcase_02 AC 64 ms
50,160 KB
testcase_03 AC 55 ms
50,060 KB
testcase_04 AC 53 ms
50,072 KB
testcase_05 AC 53 ms
50,172 KB
testcase_06 AC 80 ms
50,816 KB
testcase_07 AC 53 ms
50,128 KB
testcase_08 AC 54 ms
49,724 KB
testcase_09 AC 53 ms
50,232 KB
testcase_10 AC 60 ms
50,068 KB
testcase_11 AC 53 ms
49,940 KB
testcase_12 AC 53 ms
50,284 KB
testcase_13 AC 65 ms
50,404 KB
testcase_14 AC 55 ms
50,364 KB
testcase_15 AC 53 ms
49,740 KB
testcase_16 AC 54 ms
50,360 KB
testcase_17 AC 84 ms
51,168 KB
testcase_18 AC 61 ms
50,364 KB
testcase_19 AC 53 ms
50,180 KB
testcase_20 AC 54 ms
50,048 KB
testcase_21 AC 53 ms
50,216 KB
testcase_22 AC 55 ms
50,152 KB
testcase_23 AC 65 ms
50,464 KB
testcase_24 AC 53 ms
50,144 KB
testcase_25 AC 57 ms
50,160 KB
testcase_26 AC 54 ms
50,172 KB
testcase_27 AC 57 ms
50,252 KB
testcase_28 AC 76 ms
51,188 KB
testcase_29 AC 53 ms
50,224 KB
testcase_30 AC 54 ms
50,136 KB
testcase_31 AC 54 ms
50,144 KB
testcase_32 AC 54 ms
50,052 KB
testcase_33 AC 53 ms
49,860 KB
testcase_34 AC 53 ms
50,328 KB
testcase_35 AC 54 ms
49,676 KB
testcase_36 AC 53 ms
50,296 KB
testcase_37 AC 58 ms
50,224 KB
testcase_38 AC 53 ms
50,336 KB
testcase_39 AC 79 ms
51,104 KB
testcase_40 AC 53 ms
50,348 KB
testcase_41 AC 53 ms
50,376 KB
testcase_42 AC 55 ms
49,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int n;
    static int[] prices;
    static int[] dp;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        n = Integer.parseInt(br.readLine());
        prices = new int[n];
        for (int i = 0; i < n; i++) {
            prices[i] = Integer.parseInt(br.readLine());
        }
        dp = new int[1 << n];
        System.out.println(dfw((1 << n) - 1));
   }
   
   static int dfw(int key) {
       if (key == 0) {
           return 0;
       }
       if (dp[key] != 0) {
           return dp[key];
       }
       int sum = 0;
       for (int i = 0; i < n; i++) {
           if (((1 << i) & key) != 0) {
               sum += prices[i];
           }
       }
       int min = Integer.MAX_VALUE;
       for (int i = 0; i < n; i++) {
           if (((1 << i) & key) == 0) {
               continue;
           }
           min = Math.min(min, dfw(key ^ (1 << i)) + prices[i] - Math.min(prices[i], (sum - prices[i]) % 1000));
       }
       dp[key] = min;
       return min;
   }
}
0