結果

問題 No.108 トリプルカードコンプ
ユーザー nmnmnmnmnmnmnmnmnmnmnmnmnmnm
提出日時 2014-12-22 00:24:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,212 bytes
コンパイル時間 658 ms
コンパイル使用メモリ 86,780 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-06-12 03:27:24
合計ジャッジ時間 1,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,680 KB
testcase_01 AC 3 ms
7,808 KB
testcase_02 AC 3 ms
7,808 KB
testcase_03 AC 2 ms
7,680 KB
testcase_04 AC 3 ms
7,808 KB
testcase_05 AC 3 ms
7,936 KB
testcase_06 AC 3 ms
7,552 KB
testcase_07 AC 9 ms
12,160 KB
testcase_08 AC 5 ms
12,032 KB
testcase_09 AC 3 ms
8,192 KB
testcase_10 AC 3 ms
7,808 KB
testcase_11 AC 3 ms
7,680 KB
testcase_12 WA -
testcase_13 AC 3 ms
8,576 KB
testcase_14 AC 4 ms
8,576 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 4 ms
8,064 KB
testcase_18 AC 7 ms
11,520 KB
testcase_19 AC 5 ms
11,008 KB
testcase_20 AC 4 ms
9,728 KB
testcase_21 AC 6 ms
11,136 KB
testcase_22 AC 3 ms
8,192 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];
double dp[101][101][101];

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];
  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