結果

問題 No.286 Modulo Discount Store
ユーザー scachescache
提出日時 2015-11-18 19:44:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 1,016 bytes
コンパイル時間 3,606 ms
コンパイル使用メモリ 78,020 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-09-13 16:58:54
合計ジャッジ時間 10,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,360 KB
testcase_01 AC 132 ms
41,460 KB
testcase_02 AC 145 ms
41,632 KB
testcase_03 AC 132 ms
41,352 KB
testcase_04 AC 134 ms
41,588 KB
testcase_05 AC 134 ms
40,952 KB
testcase_06 AC 144 ms
41,792 KB
testcase_07 AC 133 ms
41,504 KB
testcase_08 AC 118 ms
40,336 KB
testcase_09 AC 131 ms
41,376 KB
testcase_10 AC 136 ms
41,324 KB
testcase_11 AC 133 ms
41,348 KB
testcase_12 AC 134 ms
41,300 KB
testcase_13 AC 142 ms
41,548 KB
testcase_14 AC 129 ms
41,352 KB
testcase_15 AC 134 ms
41,204 KB
testcase_16 AC 135 ms
41,468 KB
testcase_17 AC 151 ms
41,672 KB
testcase_18 AC 138 ms
41,384 KB
testcase_19 AC 119 ms
41,216 KB
testcase_20 AC 134 ms
41,376 KB
testcase_21 AC 135 ms
41,664 KB
testcase_22 AC 133 ms
41,340 KB
testcase_23 AC 144 ms
41,436 KB
testcase_24 AC 119 ms
41,492 KB
testcase_25 AC 136 ms
41,868 KB
testcase_26 AC 132 ms
41,284 KB
testcase_27 AC 132 ms
41,456 KB
testcase_28 AC 144 ms
41,736 KB
testcase_29 AC 131 ms
41,428 KB
testcase_30 AC 131 ms
41,308 KB
testcase_31 AC 130 ms
41,200 KB
testcase_32 AC 127 ms
41,272 KB
testcase_33 AC 132 ms
41,500 KB
testcase_34 AC 132 ms
41,292 KB
testcase_35 AC 132 ms
41,340 KB
testcase_36 AC 129 ms
41,324 KB
testcase_37 AC 134 ms
41,492 KB
testcase_38 AC 131 ms
41,224 KB
testcase_39 AC 146 ms
41,348 KB
testcase_40 AC 133 ms
41,420 KB
testcase_41 AC 132 ms
41,324 KB
testcase_42 AC 130 ms
41,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main286 {
    public static void main(String[] args) {
        new Main286();
    }

    public Main286() {
        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();

        solve(m);
    }

    private void solve(int[] m) {
        int n = m.length;

        int[] total = new int[1 << n];
        int[] min = new int[1 << n];
        Arrays.fill(min, Integer.MAX_VALUE);
        min[0]= 0;

        for (int i = 1; i < (1 << n); i++) {
            int cur = 1;
            for (int j = 0; j < n; j++) {
                if (i==cur || (i & cur) > 0) {
                    min[i] = Math.min(min[i], min[i ^ cur] + Math.max(0, m[j] - total[i^cur] % 1000));
                    total[i] = total[i^cur] + m[j];
                }
                cur <<= 1;
            }
        }

        System.out.println(min[(1 << n) - 1]);
    }


}
0