結果

問題 No.1151 チャレンジゲーム
ユーザー nikkukunnikkukun
提出日時 2020-08-07 22:42:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,421 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 168,548 KB
実行使用メモリ 10,416 KB
最終ジャッジ日時 2023-10-25 03:27:30
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,416 KB
testcase_01 AC 4 ms
10,416 KB
testcase_02 WA -
testcase_03 AC 4 ms
10,416 KB
testcase_04 AC 5 ms
10,416 KB
testcase_05 WA -
testcase_06 AC 5 ms
10,416 KB
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 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 5 ms
10,416 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define fi first
#define se second
#define all(x) x.begin(), x.end()
#define lch (o << 1)
#define rch (o << 1 | 1)

typedef double db;
typedef long long ll;
typedef unsigned int ui;
typedef pair<int, int> pint;
typedef tuple<int, int, int> tint;

const int BIAS = 200 + 5;
const int M = BIAS * 2 + 5;
const int N = (1 << 10) + 5;
const int INF = 0x3f3f3f3f;
const ll INF_LL = 0x3f3f3f3f3f3f3f3f;

int n;
double f[N][M][2];
int a[N];

// det: now - other
double DFS(int s, int det, int k) {
	if (det < 0 || det > M) return -1.0;
	if (f[s][det][k] != -1.0) return f[s][det][k];
	if (s == 0) {
		f[s][det][k] = (det > BIAS) || (det == BIAS && k);
	} else {
		double maxf = -1.0;
		for (int i = 0; i < n; i++) {
			if ((s >> i) & 1) {
				int ns = s - (1 << i);
				double g0 = DFS(ns, 2 * BIAS - (det + a[i]), k);
				double g1 = DFS(ns, 2 * BIAS - (det + a[i]), k ^ 1);
				if (g0 == -1.0 || g1 == -1.0) continue;
				double p = 1.0 / a[i];
				double nf = (p * (1 - g1) + (1 - p) * (1 + g0 - g1)) / (2 - p);
				maxf = max(maxf, nf);
			}
		}
		f[s][det][k] = maxf;
	}
	return f[s][det][k];
}

int main() {
	ios::sync_with_stdio(0);

	for (int i = 0; i < N; i++)
		for (int j = 0; j < M; j++)
			f[i][j][0] = f[i][j][1] = -1.0;

	cin >> n;
	for (int i = 0; i < n; i++)
		cin >> a[i];
	cout << fixed << setprecision(10) << DFS((1 << n) - 1, BIAS, 0) << endl;

	return 0;
}
0