結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
5,248 KB
testcase_01 AC 21 ms
5,376 KB
testcase_02 AC 23 ms
5,376 KB
testcase_03 AC 34 ms
5,376 KB
testcase_04 AC 23 ms
5,376 KB
testcase_05 AC 24 ms
5,376 KB
testcase_06 AC 22 ms
5,376 KB
testcase_07 AC 36 ms
5,376 KB
testcase_08 AC 36 ms
5,376 KB
testcase_09 AC 37 ms
5,376 KB
testcase_10 AC 39 ms
5,376 KB
testcase_11 AC 43 ms
5,376 KB
testcase_12 AC 47 ms
5,376 KB
testcase_13 AC 47 ms
5,376 KB
testcase_14 AC 50 ms
5,376 KB
testcase_15 AC 62 ms
5,376 KB
testcase_16 AC 215 ms
5,376 KB
testcase_17 AC 384 ms
5,376 KB
testcase_18 AC 461 ms
5,376 KB
testcase_19 AC 490 ms
5,376 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=200000;
	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