標籤:des style blog http color os
Help Me EscapeTime Limit: 2 Seconds Memory Limit: 32768 KB Background
If thou doest well, shalt thou not be accepted? and if thou doest not well, sin lieth at the door. And unto thee shall be his desire, and thou shalt rule over him.
And Cain talked with Abel his brother: and it came to pass, when they were in the field, that Cain rose up against Abel his brother, and slew him.
And the LORD said unto Cain, Where is Abel thy brother? And he said, I know not: Am I my brother‘s keeper?
And he said, What hast thou done? the voice of thy brother‘s blood crieth unto me from the ground.
And now art thou cursed from the earth, which hath opened her mouth to receive thy brother‘s blood from thy hand;
When thou tillest the ground, it shall not henceforth yield unto thee her strength; a fugitive and a vagabond shalt thou be in the earth.
—— Bible Chapter 4
Now Cain is unexpectedly trapped in a cave with N paths. Due to LORD‘s punishment, all the paths are zigzag and dangerous. The difficulty of theith path is ci.
Then we define f as the fighting capacity of Cain. Every day, Cain will be sent to one of theN paths randomly.
Suppose Cain is in front of the ith path. He can successfully take ti days to escape from the cave as long as his fighting capacity f is larger thanci. Otherwise, he has to keep trying day after day. However, if Cain failed to escape, his fighting capacity would increaseci as the result of actual combat. (A kindly reminder: Cain will never died.)
As for ti, we can easily draw a conclusion that ti is closely related toci. Let‘s use the following function to describe their relationship:
After D days, Cain finally escapes from the cave. Please output the expectation of D.
Input
The input consists of several cases. In each case, two positive integers N and f (n ≤ 100, f ≤ 10000) are given in the first line. The second line includes N positive integersci (ci ≤ 10000, 1 ≤ i ≤ N)
Output
For each case, you should output the expectation(3 digits after the decimal point).
Sample Input
3 11 2 3
Sample Output
6.889
題目大意:有N條路,每條路都有一個Ci值,現在一個人要從中挑一條路逃出去,挑中每條路機率相同,一開始這個人有一個f值,他隨機挑一條路,如果f值大於Ci那麼他需要花費Ti天逃出去,如果小於的話那麼就f增長Ci的大小,然後重複該過程,問逃出去需要的天數的數學期望
做法:DP[f] 表示 目前這個人戰鬥力為f時逃出去需要的天數,轉移就是n個嘛。。。
#include <iostream>#include <cstdio>#include <cstring>#include <vector>#include <string>#include <algorithm>#include <queue>#include <cmath>using namespace std;const int maxn = 100000+10;struct path{ int c,t; path(int c,int t):c(c),t(t){}};vector<path> vp;int n,f;double dp[maxn];bool vis[maxn];double dfs(int f){ if(vis[f]) return dp[f]; vis[f] = 1; double ans = 0; for(int i = 0; i < n; i++){ if(vp[i].c >= f){ ans += (1+dfs(f+vp[i].c))/n; }else{ ans += double(vp[i].t)/n; } } return dp[f] = ans;}int main(){ while(~scanf("%d%d",&n,&f)){ vp.clear(); memset(vis,0,sizeof vis); for(int i = 0; i < n; i++){ int t; scanf("%d",&t); int k = int((1+sqrt(5.0))/2*t*t); vp.push_back(path(t,k)); } printf("%.3lf\n",dfs(f)); } return 0;}