結果

問題 No.108 トリプルカードコンプ
ユーザー snteasntea
提出日時 2016-10-20 19:50:10
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 2,613 bytes
コンパイル時間 1,710 ms
コンパイル使用メモリ 175,104 KB
実行使用メモリ 11,908 KB
最終ジャッジ日時 2023-08-14 17:39:24
合計ジャッジ時間 2,814 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 16 ms
11,860 KB
testcase_08 AC 9 ms
11,908 KB
testcase_09 AC 8 ms
11,896 KB
testcase_10 AC 9 ms
11,560 KB
testcase_11 AC 8 ms
11,840 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 3 ms
4,376 KB
testcase_14 AC 3 ms
4,376 KB
testcase_15 AC 3 ms
4,380 KB
testcase_16 AC 3 ms
4,376 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 13 ms
11,088 KB
testcase_19 AC 10 ms
10,184 KB
testcase_20 AC 9 ms
11,800 KB
testcase_21 AC 12 ms
11,696 KB
testcase_22 AC 8 ms
10,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef LOCAL111
#else
	#define NDEBUG
#endif
#include <bits/stdc++.h>
const int INF = 1e9;
using namespace std;
template<typename T, typename U> ostream& operator<< (ostream& os, const pair<T,U>& p) { cout << '(' << p.first << ' ' << p.second << ')'; return os; }

#define endl '\n'
#define ALL(a)  (a).begin(),(a).end()
#define SZ(a) int((a).size())
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n)  FOR(i,0,n)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define RBP(i,a) for(auto& i : a)
#ifdef LOCAL111
	#define DEBUG(x) cout<<#x<<": "<<(x)<<endl
	template<typename T> void dpite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;}
#else
	#define DEBUG(x) true
	template<typename T> void dpite(T a, T b){ return; }
#endif
#define F first
#define S second
#define SNP string::npos
#define WRC(hoge) cout << "Case #" << (hoge)+1 << ": "
#define rangej(a,b,c) ((a) <= (c) and (c) < (b))
#define rrangej(b,c) rangej(0,b,c)
template<typename T> void pite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;}
template<typename T> bool chmax(T& a, T b){if(a < b){a = b; return true;} return false;}
template<typename T> bool chmin(T& a, T b){if(a > b){a = b; return true;} return false;}

typedef long long int LL;
typedef unsigned long long ULL;
typedef pair<int,int> P;
typedef pair<LL,LL> LP;

void ios_init(){
	cout.setf(ios::fixed);
	cout.precision(12);
#ifdef LOCAL111
	return;
#endif
	ios::sync_with_stdio(false); cin.tie(0);	
}

int main()
{
	ios_init();
	int n;
	while(cin >> n){
		using vd = vector<double>;
		vector<int> a(n);
		REP(i,n) cin >> a[i];
		vector<vector<vd>> dp(n+1,vector<vd>(n+1,vd(n+1,-1)));
		vector<int> cnt(3,0);
		REP(i,n){
			if(a[i] < 3){
				cnt[2-a[i]]++;
			}
		}
		dpite(ALL(cnt));
		dp[0][0][0] = 0;
		function<double(int,int,int)> rec = [&](int p, int q, int r) -> double{
			// DEBUG(p); DEBUG(q); DEBUG(r);
			if(dp[p][q][r] != -1) return dp[p][q][r];
			double res = 0;
			int sum = p+q+r;
			int ho = n-sum;
			double d = double(ho)/n;
			if(p != 0){
				double a = (double)p/n;
				res += a/((1-d)*(1-d))+(a)*rec(p-1,q,r)/(1-d);
			}
			if(q != 0){
				double a = (double)q/n;
				res += a/((1-d)*(1-d))+(a)*rec(p+1,q-1,r)/(1-d);
			}
			if(r != 0){
				double a = (double)r/n;
				res += a/((1-d)*(1-d))+(a)*rec(p,q+1,r-1)/(1-d);
			}
			DEBUG(d); DEBUG((double)p/n); DEBUG(p); DEBUG(q); DEBUG(r);
			DEBUG(res); DEBUG(endl);
			return dp[p][q][r] = res;
		};
		cout << rec(cnt[0],cnt[1],cnt[2]) << endl;
	}
	return 0;
}
0