結果

問題 No.286 Modulo Discount Store
ユーザー tentententen
提出日時 2021-11-11 08:31:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 1,648 bytes
コンパイル時間 2,783 ms
コンパイル使用メモリ 78,108 KB
実行使用メモリ 38,084 KB
最終ジャッジ日時 2024-11-22 08:06:24
合計ジャッジ時間 7,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,432 KB
testcase_01 AC 56 ms
37,008 KB
testcase_02 AC 65 ms
36,828 KB
testcase_03 AC 54 ms
37,048 KB
testcase_04 AC 55 ms
36,936 KB
testcase_05 AC 55 ms
37,068 KB
testcase_06 AC 79 ms
37,592 KB
testcase_07 AC 54 ms
36,668 KB
testcase_08 AC 57 ms
37,084 KB
testcase_09 AC 56 ms
36,556 KB
testcase_10 AC 61 ms
37,100 KB
testcase_11 AC 55 ms
36,884 KB
testcase_12 AC 55 ms
37,028 KB
testcase_13 AC 66 ms
37,096 KB
testcase_14 AC 56 ms
37,004 KB
testcase_15 AC 55 ms
36,936 KB
testcase_16 AC 57 ms
36,956 KB
testcase_17 AC 95 ms
38,084 KB
testcase_18 AC 66 ms
37,148 KB
testcase_19 AC 56 ms
36,968 KB
testcase_20 AC 56 ms
37,148 KB
testcase_21 AC 56 ms
37,040 KB
testcase_22 AC 55 ms
37,044 KB
testcase_23 AC 67 ms
37,084 KB
testcase_24 AC 57 ms
36,692 KB
testcase_25 AC 59 ms
36,612 KB
testcase_26 AC 56 ms
36,700 KB
testcase_27 AC 58 ms
36,936 KB
testcase_28 AC 70 ms
37,072 KB
testcase_29 AC 55 ms
37,096 KB
testcase_30 AC 56 ms
37,008 KB
testcase_31 AC 56 ms
36,916 KB
testcase_32 AC 55 ms
36,656 KB
testcase_33 AC 55 ms
37,040 KB
testcase_34 AC 55 ms
36,952 KB
testcase_35 AC 54 ms
36,888 KB
testcase_36 AC 55 ms
36,820 KB
testcase_37 AC 57 ms
37,060 KB
testcase_38 AC 54 ms
37,072 KB
testcase_39 AC 68 ms
37,280 KB
testcase_40 AC 54 ms
37,016 KB
testcase_41 AC 54 ms
36,860 KB
testcase_42 AC 56 ms
36,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] price = new int[n];
        for (int i = 0; i < n; i++) {
            price[i] = sc.nextInt();
        }
        int[] values = new int[1 << n];
        int[] costs = new int[1 << n];
        for (int i = 1; i < (1 << n); i++) {
            costs[i] = Integer.MAX_VALUE;
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                values[i] = values[i ^ (1 << j)] + price[j];
                costs[i] = Math.min(costs[i], costs[i ^ (1 << j)] + Math.max(0, price[j] - values[i ^ (1 << j)] % 1000));
            }
        }
        System.out.println(costs[(1 << n) - 1]);
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0