結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー Kome_soudouKome_soudou
提出日時 2022-03-11 01:20:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 763 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 77,320 KB
最終ジャッジ日時 2024-09-15 01:20:20
合計ジャッジ時間 25,688 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 43 ms
57,984 KB
testcase_03 AC 45 ms
59,904 KB
testcase_04 AC 101 ms
67,456 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 438 ms
76,080 KB
testcase_09 AC 438 ms
76,160 KB
testcase_10 AC 436 ms
75,904 KB
testcase_11 AC 345 ms
76,160 KB
testcase_12 AC 464 ms
76,052 KB
testcase_13 AC 439 ms
75,784 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,496 ms
76,160 KB
testcase_21 AC 1,756 ms
76,288 KB
testcase_22 AC 350 ms
76,196 KB
testcase_23 TLE -
testcase_24 AC 283 ms
76,264 KB
testcase_25 AC 607 ms
75,776 KB
testcase_26 AC 235 ms
76,100 KB
testcase_27 AC 55 ms
64,640 KB
testcase_28 AC 68 ms
71,808 KB
testcase_29 AC 55 ms
65,024 KB
testcase_30 AC 346 ms
76,160 KB
testcase_31 AC 327 ms
76,032 KB
testcase_32 AC 324 ms
75,692 KB
testcase_33 AC 316 ms
76,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

# 行列の乗算(mod)
def mat_mul(a, b, 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

# 行列の累乗(mod)
def mat_pow(a, n, mod):
	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, mod)
		a = mat_mul(a, a, mod)
		n >>= 1
	return b

N, M, T = map(int, input().split())
G = [[0 for j in range(N)] for i in range(N)]
mod = 998244353
for i in range(M):
	s, t = map(int, input().split())
	G[s][t] = 1
	G[t][s] = 1

ans = mat_pow(G, T, mod)
print(ans[0][0])
0