結果

問題 No.58 イカサマなサイコロ
ユーザー なおなお
提出日時 2014-11-04 23:56:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,055 ms / 5,000 ms
コード長 1,121 bytes
コンパイル時間 1,245 ms
コンパイル使用メモリ 160,568 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-09 19:04:34
合計ジャッジ時間 23,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,055 ms
6,816 KB
testcase_01 AC 2,010 ms
6,940 KB
testcase_02 AC 2,009 ms
6,940 KB
testcase_03 AC 2,010 ms
6,940 KB
testcase_04 AC 2,010 ms
6,940 KB
testcase_05 AC 2,009 ms
6,944 KB
testcase_06 AC 2,008 ms
6,940 KB
testcase_07 AC 2,010 ms
6,944 KB
testcase_08 AC 2,009 ms
6,940 KB
testcase_09 AC 2,009 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 想定解法: モンテカルロ

#include <bits/stdc++.h>
using namespace std;
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))
void rc(int v,int mn,int mx){if(v<mn||mx<v){cerr<<"error"<<endl;}}
const int MAX = 10;

unsigned int xor128(void) {
    static unsigned int x=123456789,y=362436069,z=521288629,w=88675123;
    unsigned int t=(x^(x<<11));x=y;y=z;z=w; return( w=(w^(w>>19))^(t^(t>>8)) );
}
unsigned int xor128rnd(unsigned int m){
    return xor128() % m;
}

int main(){
    int N, K;
    cin >> N >> K;
    rc(N,1,MAX);
    rc(K,0,N);

    clock_t t = clock() + CLOCKS_PER_SEC * 2;
    int win = 0, total = 1;
    while(t >= clock()){
        int sum = 0;
        REP(i,N) sum += xor128rnd(6)+1;
        REP(i,N-K) sum -= xor128rnd(6)+1;
        REP(i,K) sum -= xor128rnd(3)+4;
        if(sum < 0) win++;
        total++;
    }

    cout << fixed << setprecision(9) << 1.0*win/total << endl;
    return 0;
}

/* 解説 
実際にシミュレーションして勝敗をカウントします。
2秒間くらいやれば正解にだいたい近づきます。
*/
0