結果

問題 No.286 Modulo Discount Store
ユーザー uafr_csuafr_cs
提出日時 2015-10-11 23:55:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,449 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 79,120 KB
実行使用メモリ 44,260 KB
最終ジャッジ日時 2024-07-21 07:03:26
合計ジャッジ時間 8,425 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,376 KB
testcase_01 AC 125 ms
41,316 KB
testcase_02 AC 155 ms
42,268 KB
testcase_03 AC 127 ms
41,160 KB
testcase_04 AC 109 ms
39,980 KB
testcase_05 AC 115 ms
41,176 KB
testcase_06 AC 158 ms
42,456 KB
testcase_07 AC 116 ms
41,028 KB
testcase_08 AC 106 ms
40,060 KB
testcase_09 AC 102 ms
40,028 KB
testcase_10 AC 125 ms
41,100 KB
testcase_11 AC 116 ms
41,240 KB
testcase_12 AC 119 ms
41,344 KB
testcase_13 AC 133 ms
41,440 KB
testcase_14 AC 118 ms
41,356 KB
testcase_15 AC 98 ms
40,176 KB
testcase_16 AC 102 ms
40,172 KB
testcase_17 AC 184 ms
44,260 KB
testcase_18 AC 125 ms
41,132 KB
testcase_19 AC 107 ms
40,164 KB
testcase_20 AC 119 ms
41,032 KB
testcase_21 AC 102 ms
40,204 KB
testcase_22 AC 110 ms
40,184 KB
testcase_23 AC 152 ms
41,820 KB
testcase_24 AC 103 ms
40,232 KB
testcase_25 AC 119 ms
40,676 KB
testcase_26 AC 103 ms
40,428 KB
testcase_27 AC 116 ms
40,844 KB
testcase_28 AC 152 ms
42,688 KB
testcase_29 AC 121 ms
41,316 KB
testcase_30 AC 119 ms
41,284 KB
testcase_31 AC 109 ms
40,044 KB
testcase_32 AC 121 ms
41,336 KB
testcase_33 AC 120 ms
41,332 KB
testcase_34 AC 117 ms
41,396 KB
testcase_35 AC 127 ms
41,472 KB
testcase_36 AC 115 ms
41,312 KB
testcase_37 AC 125 ms
41,780 KB
testcase_38 AC 99 ms
40,044 KB
testcase_39 AC 137 ms
42,132 KB
testcase_40 AC 97 ms
39,768 KB
testcase_41 AC 100 ms
40,144 KB
testcase_42 AC 114 ms
41,236 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][N];
		for(int i = 0; i < bit_size; i++){
			for(int j = 0; j < N; j++){
				DP[i][j] = Integer.MAX_VALUE;
			}
		}
		
		for(int i = 0; i < N; i++){
			DP[1 << i][i] = items[i];
		}
		
		for(int bit = 1; bit < bit_size; bit++){
			for(int last_buy = 0; last_buy < N; last_buy++){
				if(DP[bit][last_buy] == Integer.MAX_VALUE){
					continue;
				}
				
				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][new_buy] = Math.min(DP[next_bit][new_buy], DP[bit][last_buy] + items[new_buy] - Math.min(items[new_buy], mods[bit]));
				}
			}
		}
		
		System.out.println(Arrays.stream(DP[bit_size - 1]).min().getAsInt());
	}

}
0