結果

問題 No.107 モンスター
ユーザー GrenacheGrenache
提出日時 2016-05-26 23:26:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 1,098 bytes
コンパイル時間 6,028 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 47,916 KB
最終ジャッジ日時 2024-06-01 04:36:52
合計ジャッジ時間 8,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,964 KB
testcase_01 AC 135 ms
41,228 KB
testcase_02 AC 131 ms
41,324 KB
testcase_03 AC 133 ms
41,456 KB
testcase_04 AC 132 ms
41,132 KB
testcase_05 AC 133 ms
41,584 KB
testcase_06 AC 129 ms
41,164 KB
testcase_07 AC 132 ms
41,148 KB
testcase_08 AC 133 ms
41,536 KB
testcase_09 AC 129 ms
41,324 KB
testcase_10 AC 134 ms
41,252 KB
testcase_11 AC 133 ms
41,324 KB
testcase_12 AC 134 ms
41,388 KB
testcase_13 AC 149 ms
42,468 KB
testcase_14 AC 168 ms
43,560 KB
testcase_15 AC 167 ms
43,236 KB
testcase_16 AC 135 ms
41,376 KB
testcase_17 AC 168 ms
41,812 KB
testcase_18 AC 149 ms
47,780 KB
testcase_19 AC 149 ms
47,916 KB
testcase_20 AC 145 ms
42,932 KB
testcase_21 AC 156 ms
42,056 KB
testcase_22 AC 155 ms
43,708 KB
testcase_23 AC 158 ms
47,772 KB
testcase_24 AC 153 ms
47,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder107 {

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

        int n = sc.nextInt();

        int[] d = new int[n];
        for (int i = 0; i < n; i++) {
        	d[i] = sc.nextInt();
        }

        int[][] dp = new int[n + 1][0x1 << n];
        dp[0][0] = 100;
        for (int i = 0; i < 0x1 << n; i++) {
        	for (int k = 0; k < n; k++) {
        		if (dp[k][i] == 0) {
        			continue;
        		}

        		for (int j = 0; j < n; j++) {
        			if ((i & 0x1 << j) != 0) {
        				continue;
        			}

        			if (d[j] < 0) {
        				dp[k + 1][i | 0x1 << j] = Math.max(dp[k + 1][i | 0x1 << j], dp[k][i] + d[j]);
        			} else {
        				dp[k][i | 0x1 << j] = Math.max(dp[k][i | 0x1 << j], Math.min(100 * (k + 1), dp[k][i] + d[j]));
        			}
        		}
        	}
        }

        int max = 0;
        for (int i = 0; i <= n; i++) {
        	max = Math.max(max, dp[i][(0x1 << n) - 1]);
        }

    	System.out.println(max);

    	sc.close();
    }
}
0