結果

問題 No.162 8020運動
ユーザー zerokugizerokugi
提出日時 2015-03-06 00:46:41
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 3,046 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 99,832 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-06 15:27:04
合計ジャッジ時間 3,559 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
4,384 KB
testcase_01 AC 66 ms
4,376 KB
testcase_02 AC 98 ms
4,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 5 ms
4,380 KB
testcase_10 AC 103 ms
4,380 KB
testcase_11 AC 68 ms
4,380 KB
testcase_12 AC 32 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 12 ms
4,376 KB
testcase_15 AC 12 ms
4,380 KB
testcase_16 AC 38 ms
4,380 KB
testcase_17 AC 19 ms
4,376 KB
testcase_18 AC 124 ms
4,380 KB
testcase_19 AC 91 ms
4,380 KB
testcase_20 AC 103 ms
4,376 KB
testcase_21 AC 105 ms
4,384 KB
testcase_22 AC 96 ms
4,380 KB
testcase_23 AC 104 ms
4,376 KB
testcase_24 AC 98 ms
4,376 KB
testcase_25 AC 111 ms
4,376 KB
testcase_26 AC 5 ms
4,380 KB
testcase_27 AC 72 ms
4,384 KB
testcase_28 AC 123 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <climits>
#include <ctime>
#include <queue>
#include <stack>
#include <algorithm>
#include <list>
#include <vector>
#include <set>
#include <map>
#include <iostream>
#include <deque>
#include <complex>
#include <string>
#include <iomanip>
#include <sstream>
#include <bitset>
#include <valarray>
#include <unordered_map>
#include <iterator>
#include <functional>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef unsigned int uint;
typedef unsigned char uchar;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;

#define REP(i,x) for(int i=0;i<(int)(x);i++)
#define REPS(i,x) for(int i=1;i<=(int)(x);i++)
#define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--)
#define RREPS(i,x) for(int i=((int)(x));i>0;i--)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();i++)
#define RFOR(i,c) for(__typeof((c).rbegin())i=(c).rbegin();i!=(c).rend();i++)
#define ALL(container) (container).begin(), (container).end()
#define RALL(container) (container).rbegin(), (container).rend()
#define SZ(container) ((int)container.size())
#define mp(a,b) make_pair(a, b)
#define pb push_back
#define eb emplace_back
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T> ostream& operator<<(ostream &os, const vector<T> &t) {
os<<"["; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"]"; return os;
}
template<class T> ostream& operator<<(ostream &os, const set<T> &t) {
os<<"{"; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"}"; return os;
}
template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";}
template<class S, class T> pair<S,T> operator+(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first+t.first, s.second+t.second);}
template<class S, class T> pair<S,T> operator-(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first-t.first, s.second-t.second);}

const int INF = 1<<28;
const double EPS = 1e-10;
const int MOD = 1000000007;

long double p[3], memo[15][21];
int n;

double dp(int n, int r){
	if(memo[n][r] >= 0) return memo[n][r];
	long double  &sum = memo[n][r] = 0;
	if(r == 0 || n == 0) return sum = n;
	if(n == 1) return sum = (1-p[0]) * dp(n, r-1);
	REP(i, 1<<n){
		long double  pp = 1;
		REP(j, n){
			long double  q = (j == 0 || j == n-1) ? p[1] : p[2];
			pp *= 1&(i>>j) ? 1-q : q;
		}
		int c = 0;
		REP(j, n+1){
			if(i&(1 << j)) c++;
			else{
				sum += pp*dp(c, r-1);
				c = 0;
			}
		}
	}
	if(sum < 0) sum = 0;
	return sum;
}
int main(int argc, char *argv[]){
	ios::sync_with_stdio(false);
	cin >> n;
	REP(i, 3){
		cin >> p[i];
		p[i] *= 0.01;
	}
	REP(i, 15)REP(j, 20) memo[i][j] = -1;
	printf("%.11f\n", (double)(dp(14, 80 - n)*2));
	return 0;
}
0