Catalan数列
因为这里的模数是素数,所以可以用费马小定理, 如果不是,就要用扩展欧几里得 #include #include #include #include using namespace std; typedef long long ll; const int mod = 1e9 + 7; int a, b, n; int quick_mul(int a, int b, int p) { int ans = 1; while (b) { if (b & 1) ans = 1ll * ans * a % p; a = 1ll
用户评论
推荐下载
-
等比数列的内容
一个等比数列的文档.
22 2019-04-15 -
Oracle函数列表速查.mht
Oracle数据库开发和应用函数速查列表,有详细说明和例子
23 2019-05-13 -
CoreDll.dll函数列表
这是CoreDll函数列表,没有函数的具体使用说明需要的话自己到msdn上查
50 2019-06-04 -
数列的极限高数课件
高数课件数列的极限是700多kb的,欢迎下载。下载不了请联系我。
35 2019-07-28 -
用matelab解决数列求和问题
用matelab解决数列求和问题,等比型,等差型及阶乘型
23 2019-07-18 -
python斐波纳契数列
python斐波纳契数列
40 2019-07-19 -
优先级数列的实现
Priority sequence implementation
12 2019-06-27 -
sqlserver使用UNPIVOT函数列转行
Sqlserver uses the UNPIVOT function column to switch
17 2019-06-27 -
linuxc函数列表学习手册
linuxc函数列表学习手册linux_c.rar
18 2019-05-02 -
sublime显示函数列表插件
Sublime display function list plugin
31 2019-06-22
暂无评论