結果

問題 No.107 モンスター
ユーザー takeya_okinotakeya_okino
提出日時 2019-07-26 23:27:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,184 bytes
コンパイル時間 2,474 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 42,044 KB
最終ジャッジ日時 2024-07-02 09:57:16
合計ジャッジ時間 7,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,156 KB
testcase_01 AC 133 ms
40,928 KB
testcase_02 AC 130 ms
41,120 KB
testcase_03 WA -
testcase_04 AC 136 ms
41,396 KB
testcase_05 AC 132 ms
41,100 KB
testcase_06 AC 130 ms
41,360 KB
testcase_07 AC 131 ms
41,108 KB
testcase_08 AC 130 ms
41,100 KB
testcase_09 AC 133 ms
41,128 KB
testcase_10 AC 134 ms
41,280 KB
testcase_11 WA -
testcase_12 AC 133 ms
41,104 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 163 ms
41,656 KB
testcase_16 AC 135 ms
41,104 KB
testcase_17 AC 144 ms
41,216 KB
testcase_18 AC 160 ms
41,796 KB
testcase_19 AC 147 ms
40,716 KB
testcase_20 AC 137 ms
41,280 KB
testcase_21 AC 134 ms
40,336 KB
testcase_22 WA -
testcase_23 AC 148 ms
40,940 KB
testcase_24 AC 160 ms
42,044 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