結果

問題 No.133 カードゲーム
ユーザー kurenai3110kurenai3110
提出日時 2016-12-15 13:33:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 15 ms / 5,000 ms
コード長 695 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 91,988 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 03:45:06
合計ジャッジ時間 1,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <random>
#include <ctime>
#include <functional>
#include <vector>
#include <algorithm>
#include <iomanip>
using namespace std;

int main() {
    int n;cin>>n;
    vector<int>a(n),b(n);
    
    for(int i=0;i<n;i++)cin>>a[i];
    for(int i=0;i<n;i++)cin>>b[i];

    random_device rd;
    mt19937 mt(rd());
    
    int limit=100000;
    int win=0;
    for(int i=0;i<limit;i++){
        shuffle(a.begin(),a.end(),mt);
        shuffle(b.begin(),b.end(),mt);
        
        int cnt=0;
        for(int j=0;j<n;j++){
            if(a[j]>b[j])cnt++;
        }
        if(cnt>n/2)win++;
    }
    cout<<fixed<<setprecision(3)<<(double)win/limit<<endl;
    
    return 0;
}
0