結果

問題 No.813 ユキちゃんの冒険
ユーザー beetbeet
提出日時 2019-04-13 18:03:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 203,424 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-21 07:21:34
合計ジャッジ時間 3,049 ms
ジャッジサーバーID
(参考情報)
judge11 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 AC 2 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


struct Precision{
  Precision(){
    cout<<fixed<<setprecision(12);
  }
}precision_beet;

//INSERT ABOVE HERE
signed main(){
  Int n;
  using D = double;
  D p,q;
  cin>>n>>p>>q;
  if(p==1){
    cout<<1.0<<endl;
    return 0;
  }
  D ap=0,aq=1;
  auto mg=[&](D p1,D q1,D p2,D q2){
            D np=p1,nq=0;
            np+=q1*p2*q1/(1.0-p1*p2);
            nq+=q1*q2/(1.0-p1*p2);
            return make_pair(np,nq);
          };
  while(n){
    if(n&1) tie(ap,aq)=mg(ap,aq,p,q);
    tie(p,q)=mg(p,q,p,q);
    n>>=1;
  }
  cout<<ap<<endl;
  return 0;
}
0