結果

問題 No.107 モンスター
ユーザー kou6839kou6839
提出日時 2015-08-12 15:43:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 779 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 79,244 KB
実行使用メモリ 50,000 KB
最終ジャッジ日時 2024-12-18 01:48:53
合計ジャッジ時間 6,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
47,732 KB
testcase_01 AC 136 ms
46,140 KB
testcase_02 AC 134 ms
46,396 KB
testcase_03 AC 133 ms
46,368 KB
testcase_04 AC 132 ms
45,968 KB
testcase_05 AC 125 ms
45,204 KB
testcase_06 AC 131 ms
46,176 KB
testcase_07 AC 135 ms
46,120 KB
testcase_08 AC 134 ms
46,128 KB
testcase_09 AC 129 ms
50,000 KB
testcase_10 AC 133 ms
47,880 KB
testcase_11 AC 122 ms
47,828 KB
testcase_12 AC 131 ms
47,712 KB
testcase_13 AC 143 ms
48,196 KB
testcase_14 AC 154 ms
48,088 KB
testcase_15 AC 154 ms
47,972 KB
testcase_16 AC 135 ms
47,692 KB
testcase_17 AC 142 ms
47,992 KB
testcase_18 AC 153 ms
47,664 KB
testcase_19 AC 150 ms
47,884 KB
testcase_20 AC 156 ms
48,088 KB
testcase_21 AC 164 ms
48,160 KB
testcase_22 AC 151 ms
47,864 KB
testcase_23 AC 168 ms
48,276 KB
testcase_24 AC 152 ms
48,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Frame;
import java.net.StandardSocketOptions;
import java.util.*;
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,-100000000);
		dp[0]=100;
		for(int i=0;i<(1<<N);i++){
			if(dp[i]<0) continue;
			int did = 1;
			for(int j=0;j<N;j++) if( (i&(1<<j))>0. && D[j]<0) did+=1;
			for(int j=0;j<N;j++){
				if( (i&(1<<j))==0){
					if(D[j]>0){
						dp[i+(1<<j)]=Math.min(did*100, Math.max(dp[i+(1<<j)], dp[i]+D[j]));
					}else if(dp[i]+D[j]>0){
						dp[i+(1<<j)]=Math.max(dp[i+(1<<j)], dp[i]+D[j]);
					}
				}
			}
		}
		System.out.println(Math.max(0, dp[(1<<N)-1]));
		
	}
}
0