結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー stngstng
提出日時 2022-05-15 14:02:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 716 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 77,092 KB
最終ジャッジ日時 2024-07-26 20:53:27
合計ジャッジ時間 25,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,720 KB
testcase_01 AC 42 ms
52,856 KB
testcase_02 AC 43 ms
59,016 KB
testcase_03 AC 44 ms
61,760 KB
testcase_04 AC 96 ms
65,592 KB
testcase_05 AC 42 ms
53,132 KB
testcase_06 AC 38 ms
53,408 KB
testcase_07 AC 36 ms
52,884 KB
testcase_08 AC 431 ms
76,136 KB
testcase_09 AC 428 ms
75,980 KB
testcase_10 AC 432 ms
76,268 KB
testcase_11 AC 333 ms
72,656 KB
testcase_12 AC 458 ms
75,988 KB
testcase_13 AC 432 ms
75,976 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,500 ms
76,292 KB
testcase_21 AC 1,785 ms
76,656 KB
testcase_22 AC 342 ms
75,868 KB
testcase_23 TLE -
testcase_24 AC 277 ms
75,928 KB
testcase_25 AC 600 ms
75,916 KB
testcase_26 AC 225 ms
75,880 KB
testcase_27 AC 51 ms
64,428 KB
testcase_28 AC 63 ms
70,188 KB
testcase_29 AC 50 ms
64,544 KB
testcase_30 AC 338 ms
76,140 KB
testcase_31 AC 322 ms
75,600 KB
testcase_32 AC 314 ms
75,784 KB
testcase_33 AC 309 ms
75,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

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())
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

A = pow_mat(st,T,n,mod)
 
print(A[0][0])
0