結果

問題 No.813 ユキちゃんの冒険
ユーザー beetbeet
提出日時 2019-04-13 18:03:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 1,701 ms
コンパイル使用メモリ 195,812 KB
最終ジャッジ日時 2025-01-07 02:10:08
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

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