码迷,mamicode.com
首页 > 其他好文 > 详细

loj #6342. 跳一跳 期望dp

时间:2019-11-04 17:33:19      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:define   int   bit   set   scan   期望   bsp   turn   names   

水题,逆推一遍即可~ 

code: 

#include <bits/stdc++.h>   
#define N 12000010
#define LL long long 
#define setIO(s) freopen(s".in","r",stdin)    
using namespace std; 
const LL mod=1000000007;  
int inv[N]; 
int main() 
{ 
	// setIO("input");   
	int n,i;  
	scanf("%d",&n); 
	LL f=0,s=0;  
	inv[1]=1; 
	for(i=2;i<=n;++i)   inv[i]=1ll*(mod-mod/i)*inv[mod%i]%mod;   
	for(i=n-1;i>=1;--i)                    
	{
		f=((s+1ll*n-1ll*i+1ll)*inv[n-i]%mod)%mod, s=(s+f)%mod; 
	} 
	printf("%lld\n",f); 
	return 0; 
}

  

loj #6342. 跳一跳 期望dp

标签:define   int   bit   set   scan   期望   bsp   turn   names   

原文地址:https://www.cnblogs.com/guangheli/p/11793020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!