結果

問題 No.58 イカサマなサイコロ
ユーザー NotationNapNotationNap
提出日時 2015-05-16 14:51:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 881 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 148,012 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-20 09:10:13
合計ジャッジ時間 1,969 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

typedef long long Int;
#define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i))

int main() {
	int N;
	int K;
	cin >> N >> K;

	const int MAX = 6 * N;
	int val_a[6] = { 1, 2, 3, 4, 5, 6 };
	int val_b[6] = { 4, 5, 6, 4, 5, 6 };

	vector<double> p1(MAX + 1);
	vector<double> p2(MAX + 1);
	
	p1[0] = 1.0;
	p2[0] = 1.0;

	REP(n, N) {
		vector<double> next(MAX + 1);
		int *val = n < K ? val_b : val_a;
		REP(m, MAX + 1) {
			REP(ii, 6) {
				int i = val[ii];
				if (p1[m] > 0) {
					next[m + i] += p1[m] / 6;
				}
			}
		}
		p1 = next;
	}
	REP(n, N) {
		vector<double> next(MAX + 1);
		REP(m, MAX + 1) {
			REP(ii, 6) {
				int i = val_a[ii];
				if (p2[m] > 0) {
					next[m + i] += p2[m] / 6;
				}
			}
		}
		p2 = next;
	}

	double win = 0;
	REP(m1, MAX + 1) REP(m2, MAX + 1) if (m1 > m2) win += p1[m1] * p2[m2];
	printf("%.6f\n", win);
}
0