結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー MineMine
提出日時 2022-01-07 23:01:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-04-26 18:57:53
合計ジャッジ時間 26,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 44 ms
57,856 KB
testcase_03 AC 47 ms
59,648 KB
testcase_04 AC 120 ms
71,424 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 465 ms
75,776 KB
testcase_09 AC 467 ms
75,776 KB
testcase_10 AC 464 ms
76,032 KB
testcase_11 AC 375 ms
76,032 KB
testcase_12 AC 495 ms
76,032 KB
testcase_13 AC 474 ms
75,904 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,548 ms
76,160 KB
testcase_21 AC 1,818 ms
76,672 KB
testcase_22 AC 381 ms
75,648 KB
testcase_23 TLE -
testcase_24 AC 303 ms
75,648 KB
testcase_25 AC 635 ms
75,776 KB
testcase_26 AC 250 ms
75,520 KB
testcase_27 AC 61 ms
63,488 KB
testcase_28 AC 70 ms
65,280 KB
testcase_29 AC 65 ms
64,384 KB
testcase_30 AC 374 ms
75,904 KB
testcase_31 AC 355 ms
75,904 KB
testcase_32 AC 349 ms
75,904 KB
testcase_33 AC 344 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mul(a, b, mod=998244353):
    n = len(a)
    ans = [[0]*n for i in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                ans[i][j] += a[i][k] * b[k][j]
                ans[i][j] %= mod
    return ans


n, m, t = map(int, input().split())
mod = 998244353
graph = [[0]*n for i in range(n)]
for i in range(m):
    a, b = map(int, input().split())
    graph[a][b] = 1
    graph[b][a] = 1

ans = [[0]*n for i in range(n)]
for i in range(n):
    ans[i][i] = 1

t_bin = bin(t)[2:]
for i in range(len(t_bin))[::-1]:
    if t_bin[i] == "1":
        ans = mul(graph, ans)
    graph = mul(graph, graph)

print(ans[0][0])
0