結果
問題 | No.1660 Matrix Exponentiation |
ユーザー | yamake |
提出日時 | 2021-08-27 22:05:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,843 bytes |
コンパイル時間 | 2,031 ms |
コンパイル使用メモリ | 178,756 KB |
実行使用メモリ | 853,504 KB |
最終ジャッジ日時 | 2024-11-21 02:29:40 |
合計ジャッジ時間 | 34,350 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
12,064 KB |
testcase_01 | AC | 2 ms
8,832 KB |
testcase_02 | WA | - |
testcase_03 | AC | 4 ms
30,976 KB |
testcase_04 | AC | 11 ms
13,640 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 379 ms
12,072 KB |
testcase_07 | AC | 2 ms
10,120 KB |
testcase_08 | AC | 11 ms
12,068 KB |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | AC | 4 ms
6,692 KB |
testcase_13 | AC | 2 ms
6,692 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<n;++i) #define rep1(i,n) for(int i=1;i<=n;++i) #define debug(output) if(debugFlag)cout<<#output<<"= "<<output<<endl using lint = long long; typedef pair<int,int> P; const bool debugFlag=true; const lint linf=1e18+7; const lint inf=1e9+7; const int MOD=1000000007; template<typename T> class Matrix{ public: int size; vector<vector<T>> mat; Matrix(int n){ size=n; mat.resize(n,vector<T>(n,0)); } void in(T value,int i,int j){ mat[i][j]+=value; } T out(int i,int j){ return mat[i][j]; } Matrix<T> mul(Matrix<T> A,Matrix<T> B){ int n=A.size; Matrix<T> res(n); for(int i=0;i<n;++i){ for(int j=0;j<n;++j){ T sum=0; for(int k=0;k<n;++k){ sum+=A.out(i,k)*B.out(k,j); sum%=MOD; } res.in(sum,i,j); } } return res; } Matrix<T> pow(long long k){ Matrix<T> res(size); Matrix<T> A(*this); for(int i=0;i<size;++i)res.in(1,i,i); while(k>0){ if(k&1)res=mul(res,A); k/=2; A=mul(A,A); } return res; } bool judge(){ int n=size; rep(i,n)rep(j,n){ if(mat[i][j])return false; } return true; } }; signed main(){ int n,k;cin>>n>>k; Matrix<lint> mat(n); rep(i,k){ int a,b;cin>>a>>b; --a;--b; mat.in(1,a,b); } lint u=linf; auto a=mat.pow(u); if(!a.judge()){ cout<<-1<<"\n"; return 0; } if(k==0){ cout<<0<<"\n"; return 0; } lint d=0; while(u-d>1){ lint mid=(u+d)/2; a=mat.pow(mid); if(a.judge())u=mid; else d=mid; } cout<<u<<"\n"; return 0; }