結果

問題 No.162 8020運動
ユーザー sugim48sugim48
提出日時 2015-03-06 00:00:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,589 ms / 5,000 ms
コード長 1,664 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 97,440 KB
実行使用メモリ 200,320 KB
最終ジャッジ日時 2024-06-24 09:41:37
合計ジャッジ時間 80,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,159 ms
200,192 KB
testcase_01 AC 2,301 ms
200,064 KB
testcase_02 AC 2,932 ms
200,064 KB
testcase_03 AC 3,571 ms
200,192 KB
testcase_04 AC 3,577 ms
200,192 KB
testcase_05 AC 3,589 ms
200,192 KB
testcase_06 AC 3,586 ms
200,320 KB
testcase_07 AC 3,566 ms
200,192 KB
testcase_08 AC 3,585 ms
200,320 KB
testcase_09 AC 1,149 ms
200,064 KB
testcase_10 AC 2,927 ms
200,192 KB
testcase_11 AC 2,295 ms
200,192 KB
testcase_12 AC 1,677 ms
200,192 KB
testcase_13 AC 3,575 ms
200,320 KB
testcase_14 AC 1,304 ms
200,320 KB
testcase_15 AC 1,295 ms
200,064 KB
testcase_16 AC 1,811 ms
200,192 KB
testcase_17 AC 1,423 ms
200,192 KB
testcase_18 AC 3,555 ms
200,192 KB
testcase_19 AC 2,801 ms
200,064 KB
testcase_20 AC 3,051 ms
200,192 KB
testcase_21 AC 3,059 ms
200,320 KB
testcase_22 AC 2,965 ms
200,192 KB
testcase_23 AC 3,035 ms
200,192 KB
testcase_24 AC 2,924 ms
200,192 KB
testcase_25 AC 3,197 ms
200,064 KB
testcase_26 AC 1,162 ms
200,192 KB
testcase_27 AC 2,446 ms
200,192 KB
testcase_28 AC 3,471 ms
200,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <unordered_map>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int v, w; };

ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-10;

int main() {
	int A; cin >> A;
	vector<double> p(3); cin >> p[0] >> p[1] >> p[2];
	p[0] /= 100; p[1] /= 100; p[2] /= 100;
	vector<unordered_map<int, double> > a(1 << 14);
	for (int S = 0; S < (1 << 14); S++) {
		int T = S;
		do {
			double& x = a[S][T];
			x = 1;
			for (int i = 0; i < 14; i++) {
				if (!((S >> i) & 1)) continue;
				int cnt = 0;
				if (i - 1 >= 0 && (S >> (i - 1)) & 1) cnt++;
				if (i + 1 < 14 && (S >> (i + 1)) & 1) cnt++;
				if ((T >> i) & 1) x *= (1 - p[cnt]);
				else x *= p[cnt];
			}
			T = (T - 1) & S;
		} while (T != S);
	}
	vector<double> dp(1 << 14);
	dp[(1 << 14) - 1] = 1;
	for (; A < 80; A++) {
		vector<double> _dp(1 << 14);
		for (int S = 0; S < (1 << 14); S++) {
			int T = S;
			do {
				_dp[T] += dp[S] * a[S][T];
				T = (T - 1) & S;
			} while (T != S);
		}
		dp = _dp;
	}
	double ans = 0;
	for (int S = 0; S < (1 << 14); S++) {
		int cnt = 0;
		for (int i = 0; i < 14; i++)
			if ((S >> i) & 1) cnt++;
		ans += dp[S] * cnt;
	}
	printf("%.10f\n", ans * 2);
}
0