UVA 11762 Race to 1(记忆化+期望)

题目链接:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=20869

【思路】

DP+期望。

设f[x]表示从x转移到1的期望操作次数,则有:

f[x]=1+f[x]*(1-g[x]/p[x])+sigma(f[x][y])/p[x]

进一步为:

f[x]=(sigma(f[x/y])+p[x])/g[x]

其中p[x]表示1..x的素数个数,p[x]表示素数中可以整除x的个数。

  保留vis可以节约时间。

【代码】

 1 #include<cstdio>
 2 #include<cmath>
 3 #include<vector>
 4 #include<cstring>
 5 using namespace std;
 6
 7 typedef long long ll;
 8 const int N = 1e6+10;
 9
10 double f[N];
11 vector<int> ps;
12 int n,vis[N],isp[N];
13
14 void get_primes() {
15     memset(isp,0,sizeof(isp));
16     for(int i=2;i<=N;i++) if(!isp[i]) {
17         ps.push_back(i);
18         if((ll)i*i<=(ll)N)for(int j=i*i;j<=N;j+=i) isp[j]=1;
19     }
20 }
21
22 double dp(int x) {
23     if(x==1) return 0;
24     if(vis[x]) return f[x];
25     vis[x]=1;
26     f[x]=0.0; int g=0,p=0;
27     for(int i=0;i<ps.size() && ps[i]<=x;i++) {
28         int y=ps[i]; p++;
29         if(x%y==0) g++ , f[x]+=dp(x/y);
30     }
31     f[x]=(f[x]+p)/g;
32     return f[x];
33 }
34
35 int main() {
36     get_primes();
37     int T,kase=0;
38     scanf("%d",&T);
39     while(T--) {
40         scanf("%d",&n);
41         printf("Case %d: %.10lf\n",++kase,dp(n));
42     }
43     return 0;
44 }
时间: 2024-10-06 07:48:26

UVA 11762 Race to 1(记忆化+期望)的相关文章

UVA - 11762 - Race to 1 记忆化概率

Dilu have learned a new thing about integers, which is - any positive integer greater than 1 can bedivided by at least one prime number less than or equal to that number. So, he is now playing withthis property. He selects a number N. And he calls th

UVA 11762 - Race to 1(概率)

UVA 11762 - Race to 1 题意:给定一个n,每次随即选择一个n以内的质数,如果不是质因子,就保持不变,如果是的话,就把n除掉该因子,问n变成1的次数的期望值 思路:tot为总的质数,cnt为质因子个数,那么f(n)=(1?cnt/tot)?f(n)+∑f(n/prime)?(1/tot),然后利用记忆化搜索去做即可 代码: #include <stdio.h> #include <string.h> const int N = 1000005; int t, n,

UVa 1252 - Twenty Questions(记忆化搜索,状态压缩dp)

题目链接:uva 1252 题意: 有n个长度为m的二进制串,每个都是不同的. 为了把所有字符串区分开,你可以询问,每次可以问某位上是0还是1. 问最少提问次数,可以把所有字符串区分开来. 思路来源于:点击打开链接 思路: m很小,可以考虑状态压缩. dp[s1][s2]表示询问的状态为s1时,此时能猜到状态包含s2时最小需要的步数. 当询问的几位=s2的二进制串小于2时就能区分出来了,dp[s1][s2]=0: 不能区分则再询问一次,s1|=(1<<k),如果问某位为0,则s2不变,问某位为

uva 11762 - Race to 1(马尔可夫)

题目链接:uva 11762 - Race to 1 题目大意:给出一个整数N,每次可以在不超过N的素数中随机选择一个P,如果P是N的约数,则把N变成N/P,否则N不变.问平均情况下需要多少次选择,才能把N变成1. 解题思路:马尔可夫,例如N=6时,f(6)=1+f(6)?13+f(4)?13+f(2)?13,1是只第一次转移,后面分别对应的是选择5,2,3的情况.所以有f(x)=∑f(x/y)+p(x)g(x),p(x)为不超过x的素数个数,g(x)为是x因子的素数个数. #include <

UVa 10817 (状压DP + 记忆化搜索) Headmaster&#39;s Headache

题意: 一共有s(s ≤ 8)门课程,有m个在职教师,n个求职教师. 每个教师有各自的工资要求,还有他能教授的课程,可以是一门或者多门. 要求在职教师不能辞退,问如何录用应聘者,才能使得每门课只少有两个老师教而且使得总工资最少. 分析: 因为s很小,所以可以用状态压缩. dp(i, s1, s2)表示考虑了前i个人,有一个人教的课程的集合为s1,至少有两个人教的集合为s2. 在递归的过程中,还有个参数s0,表示还没有人教的科目的集合. 其中m0, m1, s0, s1, s2的计算用到位运算,还

UVA - 10913Walking on a Grid(记忆化搜索)

题目:Walking on a Grid 题目大意:给出N * N的矩阵,每个格子里都有一个值,现在要求从(1,1)走到(n, n),只能往下,左,右这三个方向走,并且要求最多只能取k个负数,求这样的要求下能得到的走过格子的值之和最大. 解题思路:记忆化搜索,但是这里要四维的,因为要记录方向,为了防止走回头的路,并且取了几个负数也要记录.然后就是dfs了.状态转移方程:dp[x][y][d][k] = dp[x + dir[i][0]][y + dir[i][1]][i][k1] + G[x][

UVA 10981 - String Morphing(记忆化搜索)

题目链接:10981 - String Morphing 题意:给定开始的字符串,要求根据表格变化成一个字符串,问变化的顺序(注意,不一定要最少步数) 思路:记忆化搜索,用map来存字符串的状态,一开始按最少步数去做TLE,其实只要找到一个符合的就可以了 代码: #include <stdio.h> #include <iostream> #include <string.h> #include <string> #include <map> u

UVA - 11762 Race to 1

Dilu have learned a new thingabout integers, which is - any positive integer greater than 1 can be divided byat least one prime number less than or equal to that number. So, he is nowplaying with this property. He selects a number N. And he calls thi

UVA 1629 - Cake slicing(记忆化搜索)

记忆化搜索, 枚举所有的切割方式dp[r1][c1][r2][c2]表示(r1, c1) (r2, c2)之间的蛋糕切割所需要的最小花费count_num用来计算(r1, c1) (r2, c2)之间有多少个草莓递推边界当count_num为1是返回0 init()为对草莓数的一个预处理,使得在O(1)的时间内可以计算区域内的草莓数 总状态数为m * n * m * n决策有n + m种 时间复杂度为O((n + m) * n * n * m * m) /*583ms*/ 1 #include<

uva 10626 Buying Coke (DP + 记忆化搜索)

Problem D Buying Coke Input: Standard Input Output: Standard Output Time Limit: 2 Seconds I often buy Coca-Cola from the vending machine at work. Usually I buy several cokes at once, since my working mates also likes coke. A coke in the vending machi