結果

問題 No.286 Modulo Discount Store
ユーザー tentententen
提出日時 2020-10-07 09:52:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 3,800 ms
コンパイル使用メモリ 77,100 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-07-20 03:16:51
合計ジャッジ時間 10,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,184 KB
testcase_01 AC 103 ms
39,752 KB
testcase_02 AC 121 ms
41,108 KB
testcase_03 AC 122 ms
41,184 KB
testcase_04 AC 123 ms
41,148 KB
testcase_05 AC 104 ms
39,528 KB
testcase_06 AC 136 ms
41,296 KB
testcase_07 AC 117 ms
41,308 KB
testcase_08 AC 110 ms
40,368 KB
testcase_09 AC 120 ms
41,300 KB
testcase_10 AC 116 ms
41,000 KB
testcase_11 AC 111 ms
40,548 KB
testcase_12 AC 120 ms
41,156 KB
testcase_13 AC 134 ms
40,904 KB
testcase_14 AC 102 ms
39,748 KB
testcase_15 AC 112 ms
41,068 KB
testcase_16 AC 114 ms
41,004 KB
testcase_17 AC 136 ms
41,064 KB
testcase_18 AC 133 ms
41,360 KB
testcase_19 AC 105 ms
39,500 KB
testcase_20 AC 119 ms
40,868 KB
testcase_21 AC 117 ms
41,144 KB
testcase_22 AC 121 ms
40,928 KB
testcase_23 AC 134 ms
41,712 KB
testcase_24 AC 117 ms
41,244 KB
testcase_25 AC 130 ms
41,100 KB
testcase_26 AC 120 ms
41,168 KB
testcase_27 AC 116 ms
40,912 KB
testcase_28 AC 142 ms
41,336 KB
testcase_29 AC 111 ms
41,128 KB
testcase_30 AC 122 ms
41,276 KB
testcase_31 AC 111 ms
40,156 KB
testcase_32 AC 119 ms
41,192 KB
testcase_33 AC 119 ms
40,912 KB
testcase_34 AC 108 ms
39,664 KB
testcase_35 AC 114 ms
39,520 KB
testcase_36 AC 117 ms
40,888 KB
testcase_37 AC 141 ms
40,824 KB
testcase_38 AC 122 ms
40,920 KB
testcase_39 AC 129 ms
40,672 KB
testcase_40 AC 111 ms
41,072 KB
testcase_41 AC 112 ms
40,144 KB
testcase_42 AC 120 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[] prices;
    static int[] dp;
    static int n;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		prices = new int[n];
		for (int i = 0; i < n; i++) {
		    prices[i] = sc.nextInt();
		}
		dp = new int[1 << n];
		Arrays.fill(dp, -1);
		dp[0] = 0;
		System.out.println(dfw((1 << n) - 1));
	}
	
	static int dfw(int mask) {
	    if (dp[mask] >= 0) {
	        return dp[mask];
	    }
	    dp[mask] = Integer.MAX_VALUE;
	    int total = 0;
	    for (int i = 0; i < n; i++) {
	        if ((mask & (1 <<i)) == 0) {
	            continue;
	        }
	        total += prices[i];
	    }
	    for (int i = 0; i < n; i++) {
	        if ((mask & (1 <<i)) == 0) {
	            continue;
	        }
	        dp[mask] = Math.min(dp[mask], dfw(mask ^ (1 << i)) + Math.max(0, prices[i] - (total - prices[i]) % 1000));
	    }
	    return dp[mask];
	}
}
0