ops1211
ops1211
全部文章
分类
2019寒假ap协会第二周(2)
ap协会第二周(1)
csdn用法(3)
dp(4)
stl(1)
大数运算(1)
寒假备战蓝桥杯(5)
尺取法(2)
带权并查集(1)
并查集(1)
思维(1)
数论(7)
未归档(31)
模板(10)
石油大个人训练赛题目集(1)
蓝桥备战模板(1)
题解(3)
归档
标签
去牛客网
登录
/
注册
ops1211的博客
全部文章
(共75篇)
HDU 4704 Sum(隔板原理+组合数求和公式+费马小定理+快速幂)
#include<iostream> #include<string.h> using namespace std; typedef long long LL; #define mod 1000000007 char s[1000000]; LL bp(LL a,LL b)...
2019-04-23
0
453
HDU 4704 Sum(隔板原理+组合数求和公式+费马小定理+快速幂)
https://www.cnblogs.com/Annetree/p/7097750.html
2019-04-23
0
454
HDU 4704 Sum(隔板原理+组合数求和公式+费马小定理+快速幂)
https://www.cnblogs.com/Annetree/p/7097750.html
2019-04-23
0
551
hdu 4549 M斐波那契数列 数论 矩阵
#include<iostream> using namespace std; typedef long long LL; struct mat{ LL m[2][2]; }; mat mul(mat a,mat b){ mat ans; for(int i=0;i<2;...
2019-04-23
0
478
hdu 4549 M斐波那契数列 数论 矩阵
#include<iostream> using namespace std; typedef long long LL; struct mat{ LL m[2][2]; }; mat mul(mat a,mat b){ mat ans; for(int i=0;i<2;...
2019-04-23
0
405
数论:逆元,扩展欧几里得模板
https://www.cnblogs.com/neopenx/p/4093951.html #include "cstdio" #define LL long long LL ex_gcd(LL a,LL b,LL &x,LL &y) { if(a==...
2019-04-21
0
530
数论:逆元,扩展欧几里得模板
https://www.cnblogs.com/neopenx/p/4093951.html
2019-04-21
0
433
poj3070 Fibonacci(矩阵快速幂模板)
#include<iostream> using namespace std; typedef long long LL; struct mat{ int m[2][2]; }; mat mul(mat a,mat b){ mat ans; for(int i=0;i<2...
2019-04-21
0
516
poj3070 Fibonacci(矩阵快速幂模板)
#include<iostream> using namespace std; typedef long long LL; struct mat{ int m[2][2]; }; mat mul(mat a,mat b){ mat ans; for(int i=0;i<2...
2019-04-21
0
582
gcd
转 GCD的不同写法(while、递归式辗转相除,异或交换两值,二进制筛因子) 2018年08月05日 09:08:13 kuronekonano 阅读数:267 ...
2019-04-13
0
716
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页