結果

問題 No.107 モンスター
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-26 23:33:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 1,182 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-02 10:01:40
合計ジャッジ時間 6,404 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,152 KB
testcase_01 AC 125 ms
54,012 KB
testcase_02 AC 122 ms
53,844 KB
testcase_03 AC 123 ms
54,304 KB
testcase_04 AC 127 ms
41,000 KB
testcase_05 AC 127 ms
41,036 KB
testcase_06 AC 123 ms
41,424 KB
testcase_07 AC 126 ms
41,212 KB
testcase_08 AC 127 ms
41,424 KB
testcase_09 AC 127 ms
40,996 KB
testcase_10 AC 124 ms
41,060 KB
testcase_11 AC 129 ms
41,196 KB
testcase_12 AC 129 ms
41,712 KB
testcase_13 AC 138 ms
41,528 KB
testcase_14 AC 153 ms
41,676 KB
testcase_15 AC 152 ms
41,464 KB
testcase_16 AC 128 ms
41,172 KB
testcase_17 AC 137 ms
40,416 KB
testcase_18 AC 156 ms
41,872 KB
testcase_19 AC 155 ms
41,932 KB
testcase_20 AC 147 ms
41,164 KB
testcase_21 AC 139 ms
40,456 KB
testcase_22 AC 139 ms
41,720 KB
testcase_23 AC 159 ms
41,956 KB
testcase_24 AC 160 ms
41,768 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[] d = new int[n];
    for(int i = 0; i < n; i++) {
      d[i] = sc.nextInt();
    }
    int p = (int)Math.pow(2, n);
    int[] kosuu = new int[p];
    int[] dp = new int[p];
    for(int i = 1; i < p; i++) {
      for(int j = 0; j < n; j++) {
        if(((i & (1 << j)) != 0) && (d[j] < 0)) kosuu[i]++;
      }
    }
    for(int i = 0; i < p; i++) {
      dp[i] = -1;
    }
    dp[0] = 100;
    for(int i = 1; i < p; i++) {
      for(int j = 0; j < n; j++) {
        if((i & (1 << j)) != 0) {
          int i1 = i - (1 << j);
          if(dp[i1] > 0) {
            int t = dp[i1];
            int max = 100 + kosuu[i1] * 100;
            if(d[j] > 0) {
              t = Math.min(t + d[j], max);
            } else {
              if((t + d[j]) > 0) {
                t += d[j];
              } else {
                t = -1;
              }
            }
            dp[i] = Math.max(dp[i], t);
          }
        }
      }
    }
    int ans = dp[p - 1];
    if(dp[p - 1] == -1) ans = 0;
    System.out.println(ans);
  }
}
0