結果

問題 No.107 モンスター
ユーザー kou6839kou6839
提出日時 2015-08-12 15:43:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 779 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 79,360 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-05-10 04:43:23
合計ジャッジ時間 6,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,324 KB
testcase_01 AC 126 ms
41,332 KB
testcase_02 AC 126 ms
41,252 KB
testcase_03 AC 111 ms
40,000 KB
testcase_04 AC 117 ms
40,692 KB
testcase_05 AC 121 ms
40,940 KB
testcase_06 AC 127 ms
41,472 KB
testcase_07 AC 114 ms
40,200 KB
testcase_08 AC 125 ms
41,148 KB
testcase_09 AC 115 ms
40,320 KB
testcase_10 AC 119 ms
40,228 KB
testcase_11 AC 118 ms
40,004 KB
testcase_12 AC 126 ms
41,440 KB
testcase_13 AC 145 ms
41,776 KB
testcase_14 AC 130 ms
40,772 KB
testcase_15 AC 145 ms
41,132 KB
testcase_16 AC 127 ms
41,352 KB
testcase_17 AC 125 ms
40,632 KB
testcase_18 AC 129 ms
40,788 KB
testcase_19 AC 140 ms
41,500 KB
testcase_20 AC 143 ms
41,548 KB
testcase_21 AC 139 ms
40,948 KB
testcase_22 AC 132 ms
40,744 KB
testcase_23 AC 140 ms
41,196 KB
testcase_24 AC 132 ms
41,204 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