結果

問題 No.266 最終進化を目指せ
ユーザー GrenacheGrenache
提出日時 2015-08-07 23:56:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,316 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 78,316 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-07-18 05:27:52
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,780 KB
testcase_01 AC 113 ms
54,044 KB
testcase_02 AC 110 ms
52,968 KB
testcase_03 AC 121 ms
54,204 KB
testcase_04 AC 117 ms
54,208 KB
testcase_05 AC 111 ms
53,844 KB
testcase_06 AC 117 ms
53,992 KB
testcase_07 AC 122 ms
54,352 KB
testcase_08 AC 121 ms
54,020 KB
testcase_09 AC 110 ms
53,064 KB
testcase_10 AC 111 ms
52,844 KB
testcase_11 AC 126 ms
54,136 KB
testcase_12 AC 133 ms
54,064 KB
testcase_13 AC 127 ms
54,124 KB
testcase_14 AC 105 ms
52,992 KB
testcase_15 AC 123 ms
54,320 KB
testcase_16 AC 120 ms
54,140 KB
testcase_17 AC 125 ms
54,052 KB
testcase_18 AC 117 ms
54,044 KB
testcase_19 AC 115 ms
53,848 KB
testcase_20 AC 119 ms
54,120 KB
testcase_21 AC 112 ms
53,812 KB
testcase_22 AC 112 ms
54,088 KB
testcase_23 AC 105 ms
52,868 KB
testcase_24 AC 114 ms
54,088 KB
testcase_25 AC 115 ms
54,132 KB
testcase_26 AC 117 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;


public class Main_yukicoder266 {

	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        final int INF = Integer.MAX_VALUE / 2;
        int n = sc.nextInt();
        int[] s = new int[n + 1];
        for (int i = 0; i <= n; i++) {
        	s[i] = sc.nextInt();
        }

        int[][] dp = new int[n + 1][10 + 1];
        for (int i = 0; i <= n; i++) {
        	Arrays.fill(dp[i], INF);
        }
        dp[0][0] = 1;
        for (int i = 0; i <= n; i++) {
        	for (int j = 0; j <= 10; j++) {
        		if (j > s[i]) {
        			break;
        		}
        		if (i > 0) {
        			dp[i][j] = dp[i - 1][j] + 1;
        		}
        		for (int k = 0; k < j; k++) {
        			for (int l = 0; l < j; l++) {
        				if (j != s[n] && k + l + 1 == j) {
        					dp[i][j] = Math.min(dp[i][j], dp[i][k] + dp[i][l]);
        				} else if (j == s[n] && k + l + 1 >= j) {
        					dp[i][j] = Math.min(dp[i][j], dp[i][k] + dp[i][l]);
        				}
        			}
        		}
        	}
        }

        for (int i = 0; i <= s[n]; i++) {
        	if (i > 0) {
        		System.out.print(" ");
        	}
        	System.out.print(dp[n][i]);
        }
        System.out.println("");

        sc.close();
    }
}
0