結果

問題 No.1590 Random Shopping
ユーザー momoyuumomoyuu
提出日時 2024-08-08 16:05:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 936 ms / 5,000 ms
コード長 1,236 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 108,368 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-08 16:05:35
合計ジャッジ時間 10,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 6 ms
6,944 KB
testcase_11 AC 20 ms
6,940 KB
testcase_12 AC 72 ms
6,940 KB
testcase_13 AC 293 ms
6,944 KB
testcase_14 AC 935 ms
6,940 KB
testcase_15 AC 908 ms
6,940 KB
testcase_16 AC 936 ms
6,940 KB
testcase_17 AC 909 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 936 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 906 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 934 ms
6,940 KB
testcase_24 AC 909 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

using ld = long double;
#include<iomanip>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll n;
    cin>>n;
    vector<ll> a(n),r(n);
    for(int i = 0;i<n;i++) cin>>a[i];
    for(int i = 0;i<n;i++) cin>>r[i];

    ld ans = 0;
    for(int i = 0;i<n;i++){
        vector<long double> dp(n+1,0);
        dp[0] = 1;
        for(int j = 0;j<n;j++){
            if((j!=i&&a[j]<a[i])||(j<=i&&a[i]==a[j])){
                vector<long double> ndp(n+1,0);
                for(int k = 0;k<n;k++) ndp[k+1] += dp[k];
                swap(dp,ndp);
            }
            vector<long double> ndp(n+1,0);
            ndp[0] += dp[0];
            for(int k = 1;k<=n;k++){
                ndp[k] += dp[k] / 2.;

                if(k==1){
                    if(j<i) ndp[0] += dp[k] / 2.;
                    else{
                        ans += (long double) dp[k] * r[j] * a[i] / 2.;
                    }
                }else{
                    ndp[k-1] += dp[k] / 2.;
                }
            }
            swap(ndp,dp);
        }
        //cout<<ans<<endl;
    }
    cout<<setprecision(30)<<fixed<<ans<<endl;
}

0