結果

問題 No.286 Modulo Discount Store
ユーザー uafr_csuafr_cs
提出日時 2015-10-11 23:59:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 1,202 bytes
コンパイル時間 2,475 ms
コンパイル使用メモリ 77,288 KB
実行使用メモリ 41,368 KB
最終ジャッジ日時 2024-07-21 07:03:43
合計ジャッジ時間 7,994 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,008 KB
testcase_01 AC 119 ms
40,788 KB
testcase_02 AC 122 ms
40,188 KB
testcase_03 AC 122 ms
40,832 KB
testcase_04 AC 108 ms
39,832 KB
testcase_05 AC 115 ms
40,824 KB
testcase_06 AC 127 ms
40,996 KB
testcase_07 AC 117 ms
40,772 KB
testcase_08 AC 102 ms
40,044 KB
testcase_09 AC 112 ms
40,668 KB
testcase_10 AC 118 ms
41,152 KB
testcase_11 AC 101 ms
40,176 KB
testcase_12 AC 101 ms
39,896 KB
testcase_13 AC 131 ms
41,304 KB
testcase_14 AC 120 ms
41,356 KB
testcase_15 AC 113 ms
40,832 KB
testcase_16 AC 103 ms
40,188 KB
testcase_17 AC 150 ms
41,356 KB
testcase_18 AC 122 ms
41,152 KB
testcase_19 AC 120 ms
41,208 KB
testcase_20 AC 115 ms
40,656 KB
testcase_21 AC 118 ms
41,368 KB
testcase_22 AC 113 ms
40,636 KB
testcase_23 AC 127 ms
40,872 KB
testcase_24 AC 114 ms
40,884 KB
testcase_25 AC 122 ms
41,000 KB
testcase_26 AC 119 ms
40,724 KB
testcase_27 AC 116 ms
41,068 KB
testcase_28 AC 125 ms
40,896 KB
testcase_29 AC 111 ms
41,056 KB
testcase_30 AC 96 ms
40,088 KB
testcase_31 AC 112 ms
40,880 KB
testcase_32 AC 116 ms
40,776 KB
testcase_33 AC 109 ms
40,832 KB
testcase_34 AC 105 ms
40,588 KB
testcase_35 AC 95 ms
39,812 KB
testcase_36 AC 100 ms
39,972 KB
testcase_37 AC 112 ms
40,924 KB
testcase_38 AC 99 ms
40,188 KB
testcase_39 AC 123 ms
41,248 KB
testcase_40 AC 114 ms
40,700 KB
testcase_41 AC 115 ms
40,896 KB
testcase_42 AC 119 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int MOD = 1000;
		
		int[] items = new int[N];
		for(int i = 0; i < N; i++){
			items[i] = sc.nextInt();
		}
		
		final int bit_size = 1 << N;
		int[] mods = new int[bit_size];
		for(int bit = 0; bit < bit_size; bit++){
			for(int not_buy = 0; not_buy < N; not_buy++){
				if((bit & (1 << not_buy)) == 0){
					mods[bit | (1 << not_buy)] = (mods[bit] + items[not_buy]) % MOD;
				}
			}
		}
		
		int[] DP = new int[bit_size];
		for(int i = 0; i < bit_size; i++){
			DP[i]= Integer.MAX_VALUE;
		}
		
		for(int i = 0; i < N; i++){
			DP[1 << i] = items[i];
		}
		
		for(int bit = 1; bit < bit_size; bit++){	
			for(int new_buy = 0; new_buy < N; new_buy++){
				if((bit & (1 << new_buy)) != 0){
					continue;
				}
				
				final int next_bit = bit | (1 << new_buy);
				DP[next_bit] = Math.min(DP[next_bit], DP[bit] + items[new_buy] - Math.min(items[new_buy], mods[bit]));
			}
		}
		
		System.out.println(DP[bit_size - 1]);
	}

}
0