結果

問題 No.108 トリプルカードコンプ
ユーザー nmnmnmnmnmnmnmnmnmnmnmnmnmnm
提出日時 2014-12-22 22:56:43
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,227 bytes
コンパイル時間 931 ms
コンパイル使用メモリ 86,884 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-06-12 03:47:53
合計ジャッジ時間 1,516 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,680 KB
testcase_01 AC 4 ms
7,680 KB
testcase_02 AC 3 ms
7,808 KB
testcase_03 AC 3 ms
7,680 KB
testcase_04 AC 3 ms
7,424 KB
testcase_05 AC 3 ms
7,680 KB
testcase_06 AC 3 ms
7,552 KB
testcase_07 AC 13 ms
16,000 KB
testcase_08 AC 6 ms
15,872 KB
testcase_09 AC 6 ms
8,064 KB
testcase_10 AC 3 ms
7,680 KB
testcase_11 AC 3 ms
7,424 KB
testcase_12 WA -
testcase_13 AC 6 ms
9,088 KB
testcase_14 AC 5 ms
9,216 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 4 ms
7,808 KB
testcase_18 AC 11 ms
14,592 KB
testcase_19 AC 8 ms
14,080 KB
testcase_20 AC 6 ms
11,136 KB
testcase_21 AC 9 ms
14,080 KB
testcase_22 AC 5 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cfloat>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <functional>
#include <iostream>
#include <map>
#include <memory>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>
 
using namespace std;
 
#define sz size()
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define all(c) (c).begin(), (c).end()
#define rep(i,a,b) for(long long i=(a);i<(b);++i)
#define clr(a, b) memset((a), (b) ,sizeof(a))
 
#define MOD 1000000007

int N;
int memo[101][101][101];
long double dp[101][101][101];

long double f(int a, int b, int c){
  if(a==0&&b==0&&c==0)return 0.;
  if(memo[a][b][c]!=-1)return dp[a][b][c];
  long double ret = 0.;
  if(a-1>=0)ret += 1.*a/(a+b+c)*f(a-1,b,c);
  if(b-1>=0)ret += 1.*b/(a+b+c)*f(a+1,b-1,c);
  if(c-1>=0)ret += 1.*c/(a+b+c)*f(a,b+1,c-1);
  ret+=1.*N/(a+b+c);
  memo[a][b][c] = 1;
  return dp[a][b][c] = ret;
}

int main(){
  clr(memo,-1);
  cin>>N;
  int a=0,b=0,c=0;
  rep(i,0,N){
    int d;
    cin>>d;
    if(d==2)a++;
    if(d==1)b++;
    if(d==0)c++;
  }
  cout << f(a,b,c) << endl;
  return 0;
}
0