結果

問題 No.286 Modulo Discount Store
ユーザー tenten
提出日時 2021-11-11 08:31:12
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

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