
基础没太懂
喋喋语
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
矩阵的n次幂(转)
模板:#include<bits/stdc++.h>using namespace std;long long int mod=1e9+7;int n;struct asd 结构体貌似没太大用{ long long int a[102][102];};asd mul(asd x,asd y) x和y的矩阵相乘...转载 2018-05-28 20:32:24 · 7357 阅读 · 0 评论 -
素数打表、欧拉(师哥的。)
转载的师哥的 ,,素数打表:#include<iostream>#include<cstdio>#include<cstring>using namespace std;const int M=1e6;int check[M+50];int prime[M+50];int len=0;void init(){ int i,j; for(i=2; i*...转载 2018-05-24 20:01:41 · 182 阅读 · 0 评论