結果

問題 No.75 回数の期待値の問題
ユーザー cielciel
提出日時 2014-11-24 23:21:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,219 ms / 5,000 ms
コード長 589 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 66,856 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 22:04:56
合計ジャッジ時間 6,321 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
6,816 KB
testcase_01 AC 52 ms
6,944 KB
testcase_02 AC 59 ms
6,940 KB
testcase_03 AC 85 ms
6,944 KB
testcase_04 AC 59 ms
6,940 KB
testcase_05 AC 54 ms
6,940 KB
testcase_06 AC 52 ms
6,940 KB
testcase_07 AC 85 ms
6,940 KB
testcase_08 AC 90 ms
6,944 KB
testcase_09 AC 92 ms
6,940 KB
testcase_10 AC 95 ms
6,940 KB
testcase_11 AC 104 ms
6,940 KB
testcase_12 AC 113 ms
6,944 KB
testcase_13 AC 120 ms
6,940 KB
testcase_14 AC 124 ms
6,944 KB
testcase_15 AC 152 ms
6,944 KB
testcase_16 AC 543 ms
6,940 KB
testcase_17 AC 971 ms
6,940 KB
testcase_18 AC 1,143 ms
6,940 KB
testcase_19 AC 1,219 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <vector>
#include <random>
#include <cstdio>
#include <ctime>
#include <unistd.h>
using namespace std;

double expected(int n, int s, int t){//vector<int> b){
	int T=500000;
	int S=0;
	uniform_int_distribution<int> distribution(1,s);
	mt19937_64 engine((unsigned int)time(NULL)^(getpid()<<16));
	for(int I=0;I<T;I++){
		int turn=0;
		int cur=0;
		for(;cur!=t;){
			for(int i=0;i<n;i++)cur+=distribution(engine);
			if(cur>t)cur=0;
			turn++;
		}
		S+=turn;
	}
	return S*1.0/T;
}

int main(){
	int N;
	scanf("%d",&N);
	printf("%f\n",expected(1,6,N));
}
0