結果

問題 No.302 サイコロで確率問題 (2)
ユーザー motimoti
提出日時 2015-11-15 21:26:55
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,579 bytes
コンパイル時間 780 ms
コンパイル使用メモリ 101,760 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 15:14:18
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:64:17: warning: format ‘%f’ expects argument of type ‘double’, but argument 2 has type ‘long double’ [-Wformat=]
   64 |     printf("%.15f\n", ret);
      |             ~~~~^     ~~~
      |                 |     |
      |                 |     long double
      |                 double
      |             %.15Lf
main.cpp:71:17: warning: format ‘%f’ expects argument of type ‘double’, but argument 2 has type ‘long double’ [-Wformat=]
   71 |     printf("%.15f\n", (supremum - infimum) / 2.0);
      |             ~~~~^     ~~~~~~~~~~~~~~~~~~~~~~~~~~
      |                 |                          |
      |                 double                     long double
      |             %.15Lf

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
#include <complex>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <iomanip>
#include <assert.h>
#include <array>
#include <cstdio>
#include <cstring>
#include <random>
#include <functional>
#include <numeric>

using namespace std;

#define REP(i,a,b) for(int i=a;i<(int)b;i++)
#define REPLL(i,a,b) for(ll i=a;i<(ll)b;i++)
#define rep(i,n) REP(i,0,n)
#define all(c) (c).begin(), (c).end()
#define zero(a) memset(a, 0, sizeof a)
#define minus(a) memset(a, -1, sizeof a)
#define minimize(a, x) a = std::min(a, x)
#define maximize(a, x) a = std::max(a, x)

using ll  = long long;
int const inf = 1<<29;

#define double long double

int main() {

  ll N, L, R; cin >> N >> L >> R;
  L = max(N, L);
  R = min(6 * N, R);

  if(N <= 3000) {
    if(L > inf) {
      cout << "0.000000000000000000000\n";
    }

    double dp[22222]; // reuse array
    dp[0] = 1.0;
    rep(i, N) {
      for(int x=20000; x>=0; x--) {
        if(!dp[x]) { continue; }
        REP(k, 1, 7) {
          dp[x + k] += dp[x] / 6.0;
        }
        dp[x] = 0.0;
      }
    }

    double ret = 0.0;
    REPLL(i, max(0LL, L), min(R+1, 20000LL)) {
      ret += dp[i];
    }
    printf("%.15f\n", ret);
  }
  else {
    double m  = N * 3.5;
    double s  = sqrt(N * 17.5/6.0);
    double supremum = erf((R + 0.5 - m) / (sqrt(2) * s));
    double infimum  = erf((L - 0.5 - m) / (sqrt(2) * s));
    printf("%.15f\n", (supremum - infimum) / 2.0);
  }

  return 0;
}
0