結果

問題 No.567 コンプリート
ユーザー lapilapi
提出日時 2019-03-28 17:29:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 102,424 KB
実行使用メモリ 510,168 KB
最終ジャッジ日時 2024-04-21 08:36:06
合計ジャッジ時間 4,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60

double dp[1000001][64]; // dp[i][j] ; サイコロをi回振ったときに出ている目
						// j>>k ^ 1 == true : kの目が出ている
int power2[6] = { 1,2,4,8,16,32 };


int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N; cin >> N;
	for (int i = 0; i <= N; i++) {
		for (int j = 0; j <= 63; j++) {
			dp[i][j] = 0;
		}
	}

	dp[0][0] = 1;
	for (int i = 0; i < N; i++) {
		for (int j = 0; j <= 63; j++) {
			for (int k = 0; k < 6; k++) {
				if (j >> k & 1) dp[i + 1][j] += (dp[i][j] / 6);
				else dp[i + 1][j + power2[k]] += (dp[i][j] / 6);
			}
		}
	}
	

	for (int i = 0; i < 64; i++) cout << dp[N][i] << " ";
	cout << endl;



	cout << dp[N][63] << endl;
	

	return 0;
}
0