結果

問題 No.1151 チャレンジゲーム
ユーザー leaf_1415leaf_1415
提出日時 2020-08-07 23:02:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 1,999 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 81,480 KB
実行使用メモリ 10,216 KB
最終ジャッジ日時 2024-09-24 23:37:36
合計ジャッジ時間 17,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 6 ms
6,940 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 10 ms
6,944 KB
testcase_13 AC 217 ms
7,632 KB
testcase_14 AC 218 ms
7,756 KB
testcase_15 AC 219 ms
6,944 KB
testcase_16 AC 217 ms
7,884 KB
testcase_17 AC 218 ms
6,984 KB
testcase_18 AC 217 ms
8,144 KB
testcase_19 AC 218 ms
7,756 KB
testcase_20 AC 220 ms
7,884 KB
testcase_21 AC 219 ms
8,268 KB
testcase_22 AC 222 ms
7,120 KB
testcase_23 AC 219 ms
7,884 KB
testcase_24 AC 215 ms
8,140 KB
testcase_25 AC 218 ms
7,756 KB
testcase_26 AC 220 ms
7,116 KB
testcase_27 AC 218 ms
8,016 KB
testcase_28 AC 479 ms
10,020 KB
testcase_29 AC 466 ms
10,216 KB
testcase_30 AC 475 ms
9,944 KB
testcase_31 AC 470 ms
10,036 KB
testcase_32 AC 474 ms
10,064 KB
testcase_33 AC 470 ms
9,920 KB
testcase_34 AC 479 ms
10,040 KB
testcase_35 AC 467 ms
9,908 KB
testcase_36 AC 470 ms
10,068 KB
testcase_37 AC 474 ms
10,056 KB
testcase_38 AC 480 ms
9,924 KB
testcase_39 AC 478 ms
10,124 KB
testcase_40 AC 471 ms
10,108 KB
testcase_41 AC 472 ms
10,100 KB
testcase_42 AC 471 ms
10,112 KB
testcase_43 AC 477 ms
9,948 KB
testcase_44 AC 483 ms
10,076 KB
testcase_45 AC 470 ms
10,100 KB
testcase_46 AC 474 ms
9,904 KB
testcase_47 AC 475 ms
9,932 KB
testcase_48 AC 510 ms
10,048 KB
testcase_49 AC 466 ms
10,060 KB
testcase_50 AC 494 ms
10,008 KB
testcase_51 AC 485 ms
10,080 KB
testcase_52 AC 476 ms
10,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))

using namespace std;
typedef pair<llint, llint> P;

llint n;
llint a[15];
double dp[1<<10][405][2];
llint zero = 202;

double calc(llint mask, llint pt, double x)
{
	double ret = 0;
	for(int i = 0; i < n; i++){
		if(mask & (1<<i)) continue;
		double p = 1.0/a[i];
		ret = max(ret, p*dp[mask|(1<<i)][zero+pt+a[i]][1] + (1-p)*x);
	}
	//cout << mask << " " << pt << " " << x << " " << ret << endl;
	return ret;
}

double calc2(llint mask, llint pt, double x)
{
	double ret = 1;
	for(int i = 0; i < n; i++){
		if(mask & (1<<i)) continue;
		double p = 1.0/a[i];
		ret = min(ret, p*dp[mask|(1<<i)][zero+pt-a[i]][0] + (1-p)*x);
	}
	return ret;
}

int main(void)
{
	//ios::sync_with_stdio(0);
	//cin.tie(0);
	
	cin >> n;
	for(int i = 0; i < n; i++) cin >> a[i];
	
	llint N = 1<<n;
	for(int j = 1; j <= 200; j++) dp[N-1][zero+j][0] = dp[N-1][zero+j][1] = 1;
	for(int i = N-2; i >= 0; i--){
		for(int j = -200; j <= 200; j++){
			llint mx = 0;
			for(int k = 0; k < n; k++){
				if((i & (1<<k)) == 0) mx = max(mx, a[k]);
			}
			if(abs(j) + mx > 200) continue;
		
			double ub = 1, lb = 0, mid;
			for(int k = 0; k < 30; k++){
				mid = (ub+lb)/2;
				if(calc2(i, j, calc(i, j, mid)) > mid) lb = mid;
				else ub = mid;
			}
			
			dp[i][zero+j][0] = calc(i, j, ub), dp[i][zero+j][1] = ub;
		}
	}
	/*for(int i = 0; i < N; i++){
		for(int j = -3; j <= 3; j++) cout << dp[i][zero+j][0] << " ";
		cout << endl;
	}*/
	printf("%.11f\n", dp[0][zero+0][0]);
	
	return 0;
}
0