結果

問題 No.107 モンスター
ユーザー ぴろずぴろず
提出日時 2014-12-18 23:46:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 851 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 78,136 KB
実行使用メモリ 41,964 KB
最終ジャッジ日時 2024-05-10 03:57:37
合計ジャッジ時間 7,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,176 KB
testcase_01 AC 131 ms
41,316 KB
testcase_02 AC 128 ms
41,588 KB
testcase_03 AC 128 ms
41,344 KB
testcase_04 AC 127 ms
41,144 KB
testcase_05 AC 128 ms
41,852 KB
testcase_06 AC 112 ms
40,032 KB
testcase_07 AC 127 ms
41,716 KB
testcase_08 AC 136 ms
41,740 KB
testcase_09 AC 131 ms
41,364 KB
testcase_10 AC 165 ms
40,336 KB
testcase_11 AC 164 ms
41,652 KB
testcase_12 AC 164 ms
41,824 KB
testcase_13 AC 160 ms
41,964 KB
testcase_14 AC 174 ms
41,860 KB
testcase_15 AC 165 ms
41,836 KB
testcase_16 AC 146 ms
41,440 KB
testcase_17 AC 150 ms
41,572 KB
testcase_18 AC 151 ms
41,476 KB
testcase_19 AC 141 ms
41,056 KB
testcase_20 AC 156 ms
41,560 KB
testcase_21 AC 157 ms
41,736 KB
testcase_22 AC 146 ms
41,620 KB
testcase_23 AC 154 ms
41,864 KB
testcase_24 AC 139 ms
41,084 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