結果

問題 No.66 輝け☆全国たこやき杯
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-08 17:03:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 254 ms / 5,000 ms
コード長 1,109 bytes
コンパイル時間 3,292 ms
コンパイル使用メモリ 77,012 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-10-06 19:46:31
合計ジャッジ時間 4,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,448 KB
testcase_01 AC 132 ms
41,164 KB
testcase_02 AC 137 ms
41,280 KB
testcase_03 AC 134 ms
41,392 KB
testcase_04 AC 137 ms
41,548 KB
testcase_05 AC 141 ms
41,624 KB
testcase_06 AC 144 ms
41,292 KB
testcase_07 AC 161 ms
41,424 KB
testcase_08 AC 208 ms
42,440 KB
testcase_09 AC 254 ms
42,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int M = sc.nextInt();
    int[] s = new int[(int)Math.pow(2, M) + 1];
    for(int i = 1; i < s.length; i++) {
      s[i] = sc.nextInt();
    }
    int num = s.length;
    // dp[j][i]は選手iがj回戦に勝つ確率
    double[][] dp = new double[M + 1][num];
    for(int i = 1; i < num; i++) {
      int aite = i + 1;
      if(i % 2 == 0) aite = i - 1;
      dp[1][i] = (double)(s[i] * s[i]) / (double)(s[i] * s[i] + s[aite] * s[aite]);
    }
    for(int j = 2; j <= M; j++) {
      for(int i = 1; i < num; i++) {
        int k = (i + (int)Math.pow(2, j - 1) - 1) / (int)Math.pow(2, j - 1);
        int aite = k + 1;
        if(k % 2 == 0) aite = k - 1;
        double p = 0;
        for(int l = (int)Math.pow(2, j - 1) * (aite - 1) + 1; l <= (int)Math.pow(2, j - 1) * aite; l++) {
          p += (dp[j - 1][l] * ((double)(s[i] * s[i]) / (double)(s[i] * s[i] + s[l] * s[l])));
        }
        dp[j][i] = dp[j - 1][i] * p;
      }
    }
    System.out.println(dp[M][1]);
  }
}
0