結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,660 KB
testcase_01 AC 39 ms
52,276 KB
testcase_02 AC 44 ms
59,972 KB
testcase_03 AC 46 ms
59,924 KB
testcase_04 AC 105 ms
67,036 KB
testcase_05 AC 38 ms
53,288 KB
testcase_06 AC 39 ms
52,204 KB
testcase_07 AC 39 ms
52,332 KB
testcase_08 AC 451 ms
76,332 KB
testcase_09 AC 454 ms
76,300 KB
testcase_10 AC 453 ms
76,176 KB
testcase_11 AC 358 ms
76,104 KB
testcase_12 AC 481 ms
76,284 KB
testcase_13 AC 454 ms
76,720 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,573 ms
76,568 KB
testcase_21 AC 1,845 ms
76,444 KB
testcase_22 AC 364 ms
75,780 KB
testcase_23 TLE -
testcase_24 AC 297 ms
75,632 KB
testcase_25 AC 640 ms
76,028 KB
testcase_26 AC 243 ms
75,752 KB
testcase_27 AC 55 ms
65,616 KB
testcase_28 AC 68 ms
73,184 KB
testcase_29 AC 55 ms
65,636 KB
testcase_30 AC 362 ms
76,252 KB
testcase_31 AC 343 ms
76,256 KB
testcase_32 AC 336 ms
75,944 KB
testcase_33 AC 330 ms
75,932 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
"""
# 行列の乗算(mod)
def dot(a, b, n, mod):
	I, K, J = len(a), len(b), len(b[0])
	c = [[0 for j in range(J)] for i in range(I)]
	for i in range(I):
		for k in range(K):
			for j in range(J):
				c[i][j] += a[i][k] * b[k][j]
				c[i][j] %= mod
	return c

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