Codeforces Round #437 (Div. 1) C - Gotta Go Fast

5289 ワード

トランスファゲート
标题:1つのゲームには全部でnつの関門があり、i番目の関門についてはa[i]時間で通過する確率がp[i]で、b[i]で通過する時間が1-p[i]で、1つの関門を通過するたびに次の関門または時間清0を継続することができ、1番目の関門から、まずすべての関門を通過する時間とRを超えないことを要求してから徹底的に通関することができる.クリア位置までのプレイ時間の期待値を聞く
方法:
答えはきっと増加の性質を満たすので、それでは私达の2分の1の答えはきっと欠点がなくて、また、これはdpで、彼のすべての関の期待が次の関に対して影响があるため、dpで処理して欠点がなくて、また方程式を移すのは何ですか.
考えてみれば、dp[i][j]が第i関の最後の結果jの期待を表す場合.
さて、dp[i][j]=(dp[i+1][j+f[i]++f[i])*p[i]/100+(dp[i+1][i+s[i]++s[i])*(100-p[i])/100ですか、最後にdp[0][0]が答えですね.
///                 .-~~~~~~~~~-._       _.-~~~~~~~~~-.
///             __.'              ~.   .~              `.__
///           .'//                  \./                  \\`.
///        .'//                     |                     \\`.
///       .'// .-~"""""""~~~~-._     |     _,-~~~~"""""""~-. \\`.
///     .'//.-"                 `-.  |  .-'                 "-.\\`.
///   .'//______.============-..   \ | /   ..-============.______\\`.
/// .'______________________________\|/______________________________`.
#pragma comment(linker, "/STACK:1024000000,1024000000")
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;

#define pi acos(-1)
#define s_1(x) scanf("%d",&x)
#define s_2(x,y) scanf("%d%d",&x,&y)
#define s_3(x,y,z) scanf("%d%d%d",&x,&y,&z)
#define s_4(x,y,z,X) scanf("%d%d%d%d",&x,&y,&z,&X)
#define S_1(x) scan_d(x)
#define S_2(x,y) scan_d(x),scan_d(y)
#define S_3(x,y,z) scan_d(x),scan_d(y),scan_d(z)
#define PI acos(-1)
#define endl '
' #define srand() srand(time(0)); #define me(x,y) memset(x,y,sizeof(x)); #define foreach(it,a) for(__typeof((a).begin()) it=(a).begin();it!=(a).end();it++) #define close() ios::sync_with_stdio(0); cin.tie(0); #define FOR(x,n,i) for(int i=x;i<=n;i++) #define FOr(x,n,i) for(int i=x;i=x;i--) #define fOr(n,x,i) for(int i=n;i>x;i--) #define W while #define sgn(x) ((x) < 0 ? -1 : (x) > 0) #define bug printf("***********
"); #define db double #define ll long long #define mp make_pair #define pb push_back typedef long long LL; typedef pair ii; const int INF=0x3f3f3f3f; const LL LINF=0x3f3f3f3f3f3f3f3fLL; const int dx[]={-1,0,1,0,1,-1,-1,1}; const int dy[]={0,1,0,-1,-1,1,-1,1}; const int maxn=5e+500; const int maxx=4e5+10; const double EPS=1e-8; const double eps=1e-8; const int mod=1e9+7; templateinline T min(T a,T b,T c) { return min(min(a,b),c);} templateinline T max(T a,T b,T c) { return max(max(a,b),c);} templateinline T min(T a,T b,T c,T d) { return min(min(a,b),min(c,d));} templateinline T max(T a,T b,T c,T d) { return max(max(a,b),max(c,d));} template inline bool scan_d(T &ret){char c;int sgn;if (c = getchar(), c == EOF){return 0;} while (c != '-' && (c < '0' || c > '9')){c = getchar();}sgn = (c == '-') ? -1 : 1;ret = (c == '-') ? 0 : (c - '0'); while (c = getchar(), c >= '0' && c <= '9'){ret = ret * 10 + (c - '0');}ret *= sgn;return 1;} inline bool scan_lf(double &num){char in;double Dec=0.1;bool IsN=false,IsD=false;in=getchar();if(in==EOF) return false; while(in!='-'&&in!='.'&&(in'9'))in=getchar();if(in=='-'){IsN=true;num=0;}else if(in=='.'){IsD=true;num=0;} else num=in-'0';if(!IsD){while(in=getchar(),in>='0'&&in<='9'){num*=10;num+=in-'0';}} if(in!='.'){if(IsN) num=-num;return true;}else{while(in=getchar(),in>='0'&&in<='9'){num+=Dec*(in-'0');Dec*=0.1;}} if(IsN) num=-num;return true;} void Out(LL a){if(a < 0) { putchar('-'); a = -a; }if(a >= 10) Out(a / 10);putchar(a % 10 + '0');} void print(LL a){ Out(a),puts("");} //freopen( "in.txt" , "r" , stdin ); //freopen( "data.txt" , "w" , stdout ); //cerr << "run time is " << clock() << endl; int n,r; int f[55],s[55],p[55]; db dp[55][maxn]; int check(db x) { for(int i=n-1;i>=0;i--) { FOr(r+1,maxn,j) dp[i+1][j]=x; FOR(0,r,j) { double t1=(dp[i+1][j+f[i]]+f[i])*p[i]/100; double t2=(dp[i+1][j+s[i]]+s[i])*(100-p[i])/100; dp[i][j]= min(x,t1 + t2); } } return dp[0][0]