博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforce 932E Team Work(第二类斯特林数)
阅读量:4982 次
发布时间:2019-06-12

本文共 1882 字,大约阅读时间需要 6 分钟。

E. Team Work
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You have a team of N people. For a particular task, you can pick any non-empty subset of people. The cost of having x people for the task is xk.

Output the sum of costs over all non-empty subsets of people.

Input

Only line of input contains two integers N (1 ≤ N ≤ 109) representing total number of people and k (1 ≤ k ≤ 5000).

Output

Output the sum of costs for all non empty subsets modulo 109 + 7.

Examples
Input
Copy
1 1
Output
1
Input
Copy
3 2
Output
24
Note

In the first example, there is only one non-empty subset {1} with cost 11 = 1.

In the second example, there are seven non-empty subsets.

- {1} with cost 12 = 1

- {2} with cost 12 = 1

- {1, 2} with cost 22 = 4

- {3} with cost 12 = 1

- {1, 3} with cost 22 = 4

- {2, 3} with cost 22 = 4

- {1, 2, 3} with cost 32 = 9

The total cost is 1 + 1 + 4 + 1 + 4 + 4 + 9 = 24.

 分析:

表达式中出现了i的k次方,且n的值十分的大,k很小。

所以尝试用第二类斯特林的公式展开i的k次方。

 

是在n里面选i个,再在这i个里面选j个并排序的方案数。

相当于在n个里面取j个,然后考虑剩下的数取或者不取

故最终结果为

代码如下:

#include 
#include
#include
#include
#include
using namespace std;typedef long long LL;const LL MOD=1e9+7;const int MAXN=5010;LL stl2[MAXN][MAXN];LL n,k;void stl2_init(){ for(int i=1;i<=5000;i++) stl2[i][i]=1; for(int i=1;i<=5000;i++) for(int j=1;j
0) { if(b&1) ans=(ans*a)%MOD; b>>=1; a=(a*a)%MOD; } return ans;}LL A(LL n,LL m){ LL ans=1; for(int i=n;i>n-m;i--) ans=(ans*i)%MOD; return ans;}int main(){ ios::sync_with_stdio(false); stl2_init(); cin>>n>>k; LL ans=0; for(int j=1;j<=k;j++) { LL tmp=stl2[k][j]*A(n,j)%MOD*quick_pow(2,n-j)%MOD; ans+=tmp; ans%=MOD; } cout<
<

 

 

ans=i=1n(ni)

ans=i=1n(ni)ik

转载于:https://www.cnblogs.com/a249189046/p/8566766.html

你可能感兴趣的文章
java环境搭建个人注意
查看>>
C#基础类与接口的选择
查看>>
floating-camera
查看>>
mips gnu工具使用
查看>>
[javascript]event属性
查看>>
FTP操作(FTPClient)
查看>>
php防sql注入、xss
查看>>
数电碎片
查看>>
JavaBean的实例--邮件发送JavaBean:基于Javax.mail
查看>>
java遍历集合
查看>>
D. Renting Bikes 二分
查看>>
csharp C#数字字符串排序orderby的问题解决
查看>>
【转】LUA内存分析
查看>>
【转】Android studio安装与配置
查看>>
作为程序员的你,一年看几本技术相关的书
查看>>
[BZOJ 2738] 矩阵乘法 【分块】
查看>>
Grid move
查看>>
docker异常问题解决
查看>>
关于LR中的EXTRARES
查看>>
专业实训题目需求分析
查看>>