結果
問題 | No.1750 ラムドスウイルスの感染拡大-hard |
ユーザー | HIcoder |
提出日時 | 2023-07-15 19:59:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 394 ms / 2,000 ms |
コード長 | 1,380 bytes |
コンパイル時間 | 1,215 ms |
コンパイル使用メモリ | 117,084 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-17 04:41:57 |
合計ジャッジ時間 | 6,497 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 11 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 70 ms
6,944 KB |
testcase_09 | AC | 71 ms
6,944 KB |
testcase_10 | AC | 69 ms
6,940 KB |
testcase_11 | AC | 53 ms
6,940 KB |
testcase_12 | AC | 75 ms
6,944 KB |
testcase_13 | AC | 70 ms
6,944 KB |
testcase_14 | AC | 364 ms
6,944 KB |
testcase_15 | AC | 372 ms
6,944 KB |
testcase_16 | AC | 376 ms
6,940 KB |
testcase_17 | AC | 381 ms
6,940 KB |
testcase_18 | AC | 394 ms
6,944 KB |
testcase_19 | AC | 376 ms
6,944 KB |
testcase_20 | AC | 259 ms
6,940 KB |
testcase_21 | AC | 300 ms
6,944 KB |
testcase_22 | AC | 52 ms
6,944 KB |
testcase_23 | AC | 356 ms
6,944 KB |
testcase_24 | AC | 42 ms
6,944 KB |
testcase_25 | AC | 98 ms
6,940 KB |
testcase_26 | AC | 32 ms
6,940 KB |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | AC | 4 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,944 KB |
testcase_30 | AC | 51 ms
6,944 KB |
testcase_31 | AC | 48 ms
6,940 KB |
testcase_32 | AC | 47 ms
6,940 KB |
testcase_33 | AC | 45 ms
6,944 KB |
ソースコード
// #include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> #include <unordered_set> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; vector<vector<ll> > mat(vector<vector<ll> > A,vector<vector<ll> > B,int N){ //A*B vector<vector<ll> > C(N,vector<ll>(N)); for(int i=0;i<N;i++){ for(int j=0;j<N;j++){ ll ans=0; for(int k=0;k<N;k++){ ans = (ans + A[i][k]*B[k][j]%MOD)%MOD; } C[i][j] = ans; } } return C; } //行列xのy乗 vector<vector<ll> > multi_matrix(vector<vector<ll> >x, ll y ,int N){ vector<vector<ll> > pow(N,vector<ll>(N)); for(int i=0;i<N;i++) pow[i][i]=1;//単位行列 while(y>0){ if(y&1){ pow = mat(pow,x,N); } y = y>>1; x = mat(x,x,N); } return pow; } int main(){ int N,M; ll T; cin>>N>>M>>T; vector<vector<ll>> matrix(N,vector<ll>(N,0)); for(int i=0;i<M;i++){ int s,t; cin>>s>>t; matrix[s][t]=1; matrix[t][s]=1; } auto res=multi_matrix(matrix,T,N); ll ans=0; ans+=res[0][0]*1; cout<<ans<<endl; }