hdu 1575 (매트릭스 쾌속 멱 입문 문제)
3866 단어 수론
struct mat{
int m[maxn][maxn];
}unit;//
** * * **
mat operator * (mat a,mat b)
{
mat ret;
ll x;
for(int i=0;ifor(int j=0;j0;
for(int k=0;kmod((ll)a.m[i][k]*b.m[k][j]);
ret.m[i][j]=mod(x);
}
return ret;
}
#include
#include
using namespace std;
#define mod(x) ((x)%9973)
typedef long long ll;
const int maxn =11;
int n;
struct mat{
int m[maxn][maxn];
}unit;
//
mat operator * (mat a,mat b)
{
mat ret;
ll x;
for(int i=0;ifor(int j=0;j0;
for(int k=0;kreturn ret;
}
void init_unit()
{
for(int i=0;i1;
return ;
}
mat pow_mat(mat a,ll n)
{
mat ret=unit;
while(n)
{
if(n&1)
{
ret= ret*a;
}
n>>=1;
a=a*a;
}
return ret;
}
int main()
{
ios::sync_with_stdio(false);
int x;
int T;
cin>>T;
init_unit();
while(T--&&cin>>n>>x)
{
mat a;
for(int i=0;ifor(int j=0;jcin>>a.m[i][j];
a=pow_mat(a,x);
ll ans=0;
for(int i=0;i9973;
cout<return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[HDU 5608] functionProblem Description There is a function f(x),which is defined on the natural numbers set N,satisfies the following eqaut...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.