結果

問題 No.10 +か×か
ユーザー uafr_csuafr_cs
提出日時 2015-09-14 14:55:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,109 ms / 5,000 ms
コード長 1,243 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 97,448 KB
最終ジャッジ日時 2024-12-14 15:31:34
合計ジャッジ時間 7,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,184 KB
testcase_01 AC 143 ms
41,664 KB
testcase_02 AC 137 ms
41,744 KB
testcase_03 AC 1,090 ms
90,248 KB
testcase_04 AC 253 ms
48,048 KB
testcase_05 AC 142 ms
41,628 KB
testcase_06 AC 1,109 ms
97,448 KB
testcase_07 AC 556 ms
81,464 KB
testcase_08 AC 272 ms
52,872 KB
testcase_09 AC 274 ms
51,816 KB
testcase_10 AC 141 ms
41,436 KB
testcase_11 AC 139 ms
41,524 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 T = sc.nextInt();
		
		int[] A = new int[N];
		for(int i = 0; i < N; i++){
			A[i] = sc.nextInt();
		}
		
		String[] DP = new String[T + 1];
		String[] next_DP = new String[T + 1];
		DP[A[0]] = "";
		
		for(int i = 1; i < N; i++){
			Arrays.fill(next_DP, null);
			
			for(int j = T - A[i]; j >= 0; j--){
				if(DP[j] == null){ continue; }
				
				final String next_str = DP[j] + "+";
				
				if(next_DP[j + A[i]] == null){
					next_DP[j + A[i]] = next_str;
				}else if(next_str.compareTo(next_DP[j + A[i]]) < 0){
					next_DP[j + A[i]] = next_str;
				}
			}
			
			for(int j = T / A[i]; j > 0; j--){
				if(DP[j] == null){ continue; }
				
				final String next_str = DP[j] + "*";
				
				if(next_DP[j * A[i]] == null){
					next_DP[j * A[i]] = next_str;
				}else if(next_str.compareTo(next_DP[j * A[i]]) > 0){
					next_DP[j * A[i]] = next_str;
				}
			}
			
			String[] tmp = DP;
			DP = next_DP;
			next_DP = tmp;
		}
		
		System.out.println(DP[T]);
	}

}
0