2019牛客暑期多校训练营(第五场) B generator 1(十进制矩阵快速幂)
题意:分析:十进制快速幂板子题。代码(模板):#include<bits/stdc++.h>using namespace std;typedef long long LL;const int N=1000005;LL mod;struct MAT{ LL t[2][2]; MAT operator * (const MAT&b)cons...
原创
2019-08-02 10:01:35 ·
155 阅读 ·
0 评论