結果
問題 | No.58 イカサマなサイコロ |
ユーザー | DialBird |
提出日時 | 2017-02-19 08:44:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,256 bytes |
コンパイル時間 | 526 ms |
コンパイル使用メモリ | 72,260 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 14:06:58 |
合計ジャッジ時間 | 1,050 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
ソースコード
#include <iostream> #include <sstream> #include <vector> #include <array> #include <string> #include <algorithm> #include <map> #include <cmath> using namespace std; #define REP(i,first,last) for (int i=first;i<last;++i) #define MAX(x,y) (x > y ? x : y) #define MIN(x,y) (x < y ? x : y) const int MAX_N = 10; int N,K; int main(){ cin >> N >> K; double taro_dp[MAX_N+1][MAX_N*6+1] = {}; double jiro_dp[MAX_N+1][MAX_N*6+1] = {}; taro_dp[0][0] = 1; jiro_dp[0][0] = 1; // 太郎の結果 for (int i=1;i<=N;++i) { for (int j=i;j<=N*6;++j) { if (i <= K) { for (int k=4;k<=6;++k) { if (j >= k) { taro_dp[i][j] += taro_dp[i-1][j-k] / 3.0; } } } else { for (int k=1;k<=6;++k) { if (j >= k) { taro_dp[i][j] += taro_dp[i-1][j-k] / 6.0; } } } } } //二郎の結果 for (int i=1;i<=N;++i) { for (int j=i;j<=N*6;++j) { for (int k=1;k<=6;++k) { if (j >= k) { jiro_dp[i][j] += jiro_dp[i-1][j-k] / 6.0; } } } } double result = 0; for (int i=N;i<=N*6;++i) { for (int j=N;j<i;++j) { result += taro_dp[N][i] * jiro_dp[N][j]; } } cout << result << endl; }