結果

問題 No.107 モンスター
ユーザー ぴろずぴろず
提出日時 2014-12-18 23:46:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 851 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 77,964 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-12-18 00:59:16
合計ジャッジ時間 6,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,904 KB
testcase_01 AC 126 ms
53,904 KB
testcase_02 AC 129 ms
54,096 KB
testcase_03 AC 125 ms
54,132 KB
testcase_04 AC 126 ms
53,916 KB
testcase_05 AC 130 ms
53,800 KB
testcase_06 AC 127 ms
53,824 KB
testcase_07 AC 124 ms
53,968 KB
testcase_08 AC 109 ms
52,916 KB
testcase_09 AC 125 ms
54,176 KB
testcase_10 AC 132 ms
54,076 KB
testcase_11 AC 132 ms
54,004 KB
testcase_12 AC 111 ms
52,888 KB
testcase_13 AC 129 ms
53,312 KB
testcase_14 AC 151 ms
54,312 KB
testcase_15 AC 153 ms
54,052 KB
testcase_16 AC 130 ms
54,164 KB
testcase_17 AC 142 ms
53,860 KB
testcase_18 AC 156 ms
54,048 KB
testcase_19 AC 160 ms
54,184 KB
testcase_20 AC 139 ms
53,340 KB
testcase_21 AC 146 ms
53,776 KB
testcase_22 AC 142 ms
53,928 KB
testcase_23 AC 149 ms
54,060 KB
testcase_24 AC 142 ms
53,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no107;

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

public class Main {

	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[1<<n];
		Arrays.fill(dp, -(1<<29));
		dp[0] = 100;
		for(int i=0;i<(1<<n);i++) {
			int maxhp = 100;
			for(int j=0;j<n;j++) {
				if ((i>>j & 1) > 0 && d[j] < 0) {
					maxhp += 100;
				}
			}
			for(int j=0;j<n;j++) {
				if ((i>>j & 1) > 0) {
					int k = i ^ 1<<j;
					if (d[j] < 0) {
						dp[i] = Math.max(dp[i], dp[k] + d[j]);
					}else{
						dp[i] = Math.max(dp[i], Math.min(dp[k] + d[j], maxhp));
					}
					if (dp[i] <= 0) {
						dp[i] = -(1<<29);
					}
				}
			}
		}
		int ans = dp[(1<<n)-1];
		System.out.println(ans < 0 ? 0 : ans);
	}

}
0