結果

問題 No.2976 高階多点評価
ユーザー SSRSSSRS
提出日時 2024-11-29 22:41:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 776 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 206,064 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-29 22:42:15
合計ジャッジ時間 18,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 6 ms
5,248 KB
testcase_12 AC 35 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 591 ms
5,248 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int MAX = 200;
int main(){
  cout << fixed << setprecision(20);
  vector<vector<long double>> dp(MAX + 1, vector<long double>(MAX + 1, 0));
  dp[0][0] = 1;
  for (int i = 0; i < MAX; i++){
    for (int j = 1; j <= i; j++){
      dp[i + 1][j - 1] += dp[i][j] * j;
      dp[i + 1][j + 1] += dp[i][j] * j;
    }
    for (int j = 0; j <= i; j++){
      dp[i + 1][j + 1] -= dp[i][j] * 2 * (i + 1);
    }
  }
  int T;
  cin >> T;
  for (int i = 0; i < T; i++){
    int N;
    long double x;
    cin >> N >> x;
    long double s = 0;
    for (int j = N; j >= 0; j--){
      s = s * x + dp[N][j];
    }
    s *= pow(x * x + 1, -(long double) N / 2);
    for (int j = 1; j <= N; j++){
      s /= j;
    }
    cout << s << endl;
  }
}
0