結果

問題 No.813 ユキちゃんの冒険
ユーザー hashiryohashiryo
提出日時 2019-05-12 17:39:43
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,331 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 91,984 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-08-30 15:27:24
合計ジャッジ時間 10,848 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 201 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 567 ms
4,380 KB
testcase_06 AC 262 ms
4,376 KB
testcase_07 AC 64 ms
4,376 KB
testcase_08 AC 421 ms
4,376 KB
testcase_09 AC 41 ms
4,380 KB
testcase_10 AC 217 ms
4,376 KB
testcase_11 AC 154 ms
4,376 KB
testcase_12 AC 425 ms
4,380 KB
testcase_13 AC 285 ms
4,376 KB
testcase_14 AC 11 ms
4,376 KB
testcase_15 AC 516 ms
4,376 KB
testcase_16 AC 538 ms
4,380 KB
testcase_17 AC 91 ms
4,376 KB
testcase_18 AC 32 ms
4,376 KB
testcase_19 AC 594 ms
4,380 KB
testcase_20 AC 182 ms
4,376 KB
testcase_21 AC 82 ms
4,376 KB
testcase_22 AC 83 ms
4,376 KB
testcase_23 AC 303 ms
4,380 KB
testcase_24 WA -
testcase_25 AC 605 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <fstream>
#include <algorithm>
#include <string>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <vector>
#include <limits.h>
#include <math.h>
#include <functional>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <float.h>
#include <random>

#define repeat(i,n) for (int i = 0; (i) < (n); ++ (i))
#define debug(x) cerr << #x << ": " << x << '\n'
#define debugArray(x,n) for(long long hoge = 0; (hoge) < (n); ++ (hoge)) cerr << #x << "[" << hoge << "]: " << x[hoge] << '\n'
#define debugArrayP(x,n) for(long long hoge = 0; (hoge) < (n); ++ (hoge)) cerr << #x << "[" << hoge << "]: " << x[hoge].first<< " " << x[hoge].second << '\n'

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> Pii;
typedef vector<int> vint;
typedef vector<ll> vll;
const ll INF = LLONG_MAX/10;
const ll MOD = 1e9+7;


int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  int N;cin>>N;
  long double p,q;cin>>p>>q;
  double ans;
  long double r[N+1],l[N+1];
  fill(r,r+N+1,0.2);
  fill(l,l+N+1,0.2);
  r[0] = 1;
  repeat(j,50000){
    for(int i=1;i<=N;i++){
      r[i] = q*r[i-1]+p*l[i];
    }
    for(int i=N-1;i>=0;i--){
      l[i] = q*l[i+1]+p*r[i];
    }
  }
  ans = l[0];
  printf("%.5lf\n",ans);
  return 0;
}
0