結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 42 ms
58,368 KB
testcase_03 AC 44 ms
60,288 KB
testcase_04 AC 100 ms
67,020 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 450 ms
76,416 KB
testcase_09 AC 454 ms
76,180 KB
testcase_10 AC 451 ms
76,268 KB
testcase_11 AC 357 ms
76,412 KB
testcase_12 AC 484 ms
76,576 KB
testcase_13 AC 457 ms
76,356 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,588 ms
76,864 KB
testcase_21 AC 1,848 ms
76,288 KB
testcase_22 AC 364 ms
76,260 KB
testcase_23 TLE -
testcase_24 AC 298 ms
75,904 KB
testcase_25 AC 637 ms
76,084 KB
testcase_26 AC 240 ms
76,140 KB
testcase_27 AC 55 ms
65,280 KB
testcase_28 AC 66 ms
71,552 KB
testcase_29 AC 53 ms
65,280 KB
testcase_30 AC 360 ms
76,092 KB
testcase_31 AC 343 ms
75,964 KB
testcase_32 AC 334 ms
75,904 KB
testcase_33 AC 328 ms
75,904 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 mat_mul(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
"""

# 行列の累乗(mod)
def mat_pow(a, n):
	b = [[0 for j in range(len(a))] for i in range(len(a))]
	for i in range(len(a)):
		b[i][i] = 1
	while n > 0:
		if n & 1:
			b = mat_mul(b, a, n, mod)
		a = mat_mul(a, a, n, mod)
		n >>= 1
	return b

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 = mat_pow(st,T)

print(A[0][0])
0