結果
問題 | No.1749 ラムドスウイルスの感染拡大 |
ユーザー | umezo |
提出日時 | 2021-11-20 01:37:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 926 bytes |
コンパイル時間 | 2,106 ms |
コンパイル使用メモリ | 208,220 KB |
実行使用メモリ | 57,244 KB |
最終ジャッジ日時 | 2024-06-10 14:34:27 |
合計ジャッジ時間 | 5,728 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 9 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; const int MOD=998244353; vector<vector<ll>> matrixmul(ll m,vector<vector<ll>> a,vector<vector<ll>> b){ vector<vector<ll>> c(m,vector<ll>(m,0)); rep(i,m) rep(j,m) rep(k,m) c[i][j]=(c[i][j]+a[i][k]*b[k][j]%MOD)%MOD; return c; } vector<vector<ll>> matrixpow(ll m,vector<vector<ll>> vec,ll n){ vector<vector<ll>> ans(m,vector<ll>(m,0)); rep(i,m) ans[i][i]=1; while(n){ if(n&1) ans=matrixmul(m,ans,vec); vec=matrixmul(m,vec,vec); n>>=1; } return ans; } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); ll n,m,t; cin>>n>>m>>t; vector<vector<ll>> A(n,vector<ll> (n)); rep(i,m){ int a,b; cin>>a>>b; A[a][b]=1; A[b][a]=1; } vector<vector<ll>> B=matrixpow(n,A,t); cout<<B[0][0]<<endl; return 0; }