結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー stngstng
提出日時 2022-05-15 13:50:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,002 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 76,968 KB
最終ジャッジ日時 2024-07-26 20:40:43
合計ジャッジ時間 26,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,628 KB
testcase_01 AC 37 ms
53,928 KB
testcase_02 AC 40 ms
58,436 KB
testcase_03 AC 42 ms
60,276 KB
testcase_04 AC 106 ms
70,752 KB
testcase_05 AC 36 ms
52,804 KB
testcase_06 AC 36 ms
52,316 KB
testcase_07 AC 39 ms
53,064 KB
testcase_08 AC 429 ms
76,224 KB
testcase_09 AC 430 ms
76,184 KB
testcase_10 AC 430 ms
76,368 KB
testcase_11 AC 354 ms
76,280 KB
testcase_12 AC 474 ms
76,308 KB
testcase_13 AC 454 ms
76,044 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,492 ms
76,580 KB
testcase_21 AC 1,745 ms
76,244 KB
testcase_22 AC 352 ms
75,948 KB
testcase_23 TLE -
testcase_24 AC 276 ms
75,780 KB
testcase_25 AC 597 ms
76,044 KB
testcase_26 AC 227 ms
75,948 KB
testcase_27 AC 50 ms
64,924 KB
testcase_28 AC 61 ms
70,368 KB
testcase_29 AC 51 ms
65,044 KB
testcase_30 AC 356 ms
76,064 KB
testcase_31 AC 334 ms
75,996 KB
testcase_32 AC 330 ms
76,272 KB
testcase_33 AC 322 ms
76,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dot(A1,A2,n,mod):
  # n:行列のサイズ
  A = [[0]*n for _ in range(n)]
  for i in range(n):
    for j in range(n):
      for k in range(n):
        A[i][j] += A1[i][k]*A2[k][j]
        A[i][j] %= mod
  return A

def pow_mat(A,k,n,mod):
  # A:累乗する行列, k:累乗数, n:行列Aのサイズ
  P = [[0]*n for _ in range(n)]
  for i in range(n): P[i][i] = 1
  while k:
    if k&1: P = dot(P,A,n,mod)
    A = dot(A,A,n,mod)
    k >>= 1
  return P

n,m,T = map(int,input().split())
st = [[] for i in range(n)]
mod = 998244353

st = [[0]*n for i in range(n)]

for i in range(m):
    s,t = map(int,input().split())
    st[s][t] = 1
    st[t][s] = 1

"""
ct = [0]*n
ct[0] = 1

for i in range(T):
    nct = [0]*n
    for j in range(n):
        for k in st[j]:
            nct[j] += ct[k]
            nct[j] %= mod
    ct = nct[:]

print(ct[0])
"""

A = pow_mat(st,T,n,mod)
#ans = 0
"""
for i in range(n):
    for j in range(n):
        ans += A[i][j]
        ans %= mod
"""        
print(A[0][0])
0