結果

問題 No.58 イカサマなサイコロ
ユーザー ldsybldsyb
提出日時 2017-06-22 01:11:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 789 bytes
コンパイル時間 1,028 ms
コンパイル使用メモリ 87,344 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-02 12:05:12
合計ジャッジ時間 56,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #
プレゼンテーションモードにする

#include <iostream>
#include <random>
#include <chrono>
using namespace std;
int bitcount(int a){
int r = 0;
while(a){
r++;
a -= a & -a;
}
return r;
}
int main(){
int n, k;
cin >> n >> k;
random_device rnd;
mt19937 mt(rnd());
uniform_int_distribution<> rand16(1, 6), rand46(4, 6), randn((1 << k) - 1, (1 << n) - 1);
auto start = chrono::system_clock::now();
int all = 0, win = 0;
while(chrono::duration_cast<chrono::milliseconds>(chrono::system_clock::now() - start).count() < 4990){
int puni = 0, muni = 0;
int a = randn(mt);
while(bitcount(a) != k) a = randn(mt);
for(int i = 0; i < n; i++) puni += ((a >> i) & 1) ? rand46(mt) : rand16(mt);
for(int i = 0; i < n; i++) muni += rand16(mt);
all++;
if(muni < puni) win++;
}
cout << 1. * win / all << endl;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0