結果

問題 No.107 モンスター
ユーザー tentententen
提出日時 2020-12-22 15:37:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 966 bytes
コンパイル時間 2,751 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 41,872 KB
最終ジャッジ日時 2024-09-21 14:13:42
合計ジャッジ時間 6,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,284 KB
testcase_01 AC 128 ms
41,224 KB
testcase_02 AC 134 ms
41,148 KB
testcase_03 AC 130 ms
40,980 KB
testcase_04 AC 131 ms
41,216 KB
testcase_05 AC 128 ms
41,372 KB
testcase_06 AC 129 ms
41,608 KB
testcase_07 AC 132 ms
41,080 KB
testcase_08 AC 131 ms
41,336 KB
testcase_09 AC 131 ms
41,632 KB
testcase_10 AC 131 ms
41,452 KB
testcase_11 AC 131 ms
40,928 KB
testcase_12 AC 130 ms
41,104 KB
testcase_13 AC 159 ms
41,088 KB
testcase_14 AC 156 ms
41,588 KB
testcase_15 AC 174 ms
41,764 KB
testcase_16 AC 136 ms
41,392 KB
testcase_17 AC 149 ms
41,544 KB
testcase_18 AC 149 ms
41,860 KB
testcase_19 AC 150 ms
41,872 KB
testcase_20 AC 161 ms
41,384 KB
testcase_21 AC 165 ms
41,580 KB
testcase_22 AC 148 ms
41,204 KB
testcase_23 AC 149 ms
41,312 KB
testcase_24 AC 153 ms
41,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] damage = new int[n];
        for (int i = 0; i < n; i++) {
            damage[i] = sc.nextInt();
        }
        int[] dp = new int[1 << n];
        dp[0] = 100;
        for (int i = 1; i < (1 << n); i++) {
            int max = 100;
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) != 0 && damage[j] < 0) {
                    max += 100;
                }
            }
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                if (dp[i ^ (1 << j)] <= 0) {
                    continue;
                }
                dp[i] = Math.max(dp[i], Math.min(dp[i ^ (1 << j)] + damage[j], max));
            }
        }
        System.out.println(dp[(1 << n) - 1]);
    }
}
0