結果
問題 | No.344 ある無理数の累乗 |
ユーザー | beet |
提出日時 | 2018-11-23 15:32:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 5,045 bytes |
コンパイル時間 | 2,278 ms |
コンパイル使用メモリ | 208,712 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 23:20:11 |
合計ジャッジ時間 | 2,961 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename K> struct Matrix{ typedef vector<K> arr; typedef vector<arr> mat; mat dat; Matrix(size_t r,size_t c):dat(r,arr(c,K())){} Matrix(mat dat):dat(dat){} size_t size() const{return dat.size();}; bool empty() const{return size()==0;}; arr& operator[](size_t k){return dat[k];}; const arr& operator[](size_t k) const {return dat[k];}; static Matrix cross(const Matrix &A,const Matrix &B){ Matrix res(A.size(),B[0].size()); for(int i=0;i<(int)A.size();i++) for(int j=0;j<(int)B[0].size();j++) for(int k=0;k<(int)B.size();k++) res[i][j]+=A[i][k]*B[k][j]; return res; } static Matrix identity(size_t n){ Matrix res(n,n); for(int i=0;i<(int)n;i++) res[i][i]=K(1); return res; } Matrix pow(long long n) const{ Matrix a(dat),res=identity(size()); while(n){ if(n&1) res=cross(res,a); a=cross(a,a); n>>=1; } return res; } template<typename T> using ET = enable_if<is_floating_point<T>::value>; template<typename T> using EF = enable_if<!is_floating_point<T>::value>; template<typename T, typename ET<T>::type* = nullptr> static bool is_zero(T x){return abs(x)<1e-8;} template<typename T, typename EF<T>::type* = nullptr> static bool is_zero(T x){return x==T(0);} static Matrix gauss_jordan(const Matrix &A,const Matrix &B){ int n=A.size(),l=B[0].size(); Matrix C(n,n+l); for(int i=0;i<n;i++){ for(int j=0;j<n;j++) C[i][j]=A[i][j]; for(int j=0;j<l;j++) C[i][n+j]=B[i][j]; } for(int i=0;i<n;i++){ int p=i; for(int j=i;j<n;j++) if(abs(C[p][i])<abs(C[j][i])) p=j; swap(C[i],C[p]); if(is_zero(C[i][i])) return Matrix(0,0); for(int j=i+1;j<n+l;j++) C[i][j]/=C[i][i]; for(int j=0;j<n;j++){ if(i==j) continue; for(int k=i+1;k<n+l;k++) C[j][k]-=C[j][i]*C[i][k]; } } Matrix res(n,l); for(int i=0;i<n;i++) for(int j=0;j<l;j++) res[i][j]=C[i][n+j]; return res; } Matrix inv() const{ Matrix B=identity(size()); return gauss_jordan(*this,B); } K determinant() const{ Matrix A(dat); K res(1); int n=size(); for(int i=0;i<n;i++){ int p=i; for(int j=i;j<n;j++) if(abs(A[p][i])<abs(A[j][i])) p=j; if(i!=p) swap(A[i],A[p]),res=-res; if(is_zero(A[i][i])) return K(0); res*=A[i][i]; for(int j=i+1;j<n;j++) A[i][j]/=A[i][i]; for(int j=i+1;j<n;j++) for(int k=i+1;k<n;k++) A[j][k]-=A[j][i]*A[i][k]; } return res; } static arr linear_equations(const Matrix &A,const arr &b){ Matrix B(b.size(),1); for(int i=0;i<(int)b.size();i++) B[i][0]=b[i]; Matrix tmp=gauss_jordan(A,B); arr res(tmp.size()); for(int i=0;i<(int)tmp.size();i++) res[i]=tmp[i][0]; return res; } static K sigma(K x,long long n){ Matrix A(2,2); A[0][0]=x;A[0][1]=0; A[1][0]=1;A[1][1]=1; return A.pow(n)[1][0]; } }; template<typename T,T MOD = 1000000007> struct Mint{ T v; Mint():v(0){} Mint(signed v):v(v){} Mint(long long t){v=t%MOD;if(v<0) v+=MOD;} Mint pow(long long k){ Mint res(1),tmp(v); while(k){ if(k&1) res*=tmp; tmp*=tmp; k>>=1; } return res; } Mint inv(){return pow(MOD-2);} Mint& operator+=(Mint a){v+=a.v;if(v>=MOD)v-=MOD;return *this;} Mint& operator-=(Mint a){v+=MOD-a.v;if(v>=MOD)v-=MOD;return *this;} Mint& operator*=(Mint a){v=1LL*v*a.v%MOD;return *this;} Mint& operator/=(Mint a){return (*this)*=a.inv();} Mint operator+(Mint a) const{return Mint(v)+=a;}; Mint operator-(Mint a) const{return Mint(v)-=a;}; Mint operator*(Mint a) const{return Mint(v)*=a;}; Mint operator/(Mint a) const{return Mint(v)/=a;}; Mint operator-(){return v?MOD-v:v;} bool operator==(const Mint a)const{return v==a.v;} bool operator!=(const Mint a)const{return v!=a.v;} bool operator <(const Mint a)const{return v <a.v;} // find x s.t. a^x = b static T log(Mint a,Mint b){ T sq=sqrt(MOD)+1; map<Mint, T> dp; Mint res(1); for(int r=0;r<sq;r++){ if(!dp.count(res)) dp[res]=r; res*=a; } Mint p=pow(a.inv(),sq); res=b; for(int q=0;q<sq;q++){ if(dp.count(res)){ T idx=q*sq+dp[res]; if(idx>0) return idx; } res*=p; } return T(-1); } }; //INSERT ABOVE HERE signed main(){ using M = Mint<int, 1000>; using MM = Matrix<M>; MM A(2,2); A[0][0]=M(1);A[0][1]=M(3); A[1][0]=M(1);A[1][1]=M(1); MM B(2,1); B[0][0]=M(1); B[1][0]=M(1); int n; cin>>n; if(n==0){ cout<<1<<endl; return 0; } M x=MM::cross(A.pow(n-1),B)[0][0]*M(2); if(~n&1) x-=M(1); cout<<x.v<<endl; return 0; }