結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー MineMine
提出日時 2022-01-07 23:09:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 918 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 77,700 KB
最終ジャッジ日時 2024-11-14 09:10:56
合計ジャッジ時間 26,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,484 KB
testcase_01 AC 40 ms
53,484 KB
testcase_02 AC 41 ms
53,028 KB
testcase_03 AC 46 ms
60,020 KB
testcase_04 AC 121 ms
73,960 KB
testcase_05 AC 38 ms
52,316 KB
testcase_06 AC 42 ms
54,172 KB
testcase_07 AC 39 ms
53,408 KB
testcase_08 AC 459 ms
76,620 KB
testcase_09 AC 452 ms
76,396 KB
testcase_10 AC 459 ms
76,268 KB
testcase_11 AC 378 ms
76,540 KB
testcase_12 AC 487 ms
76,652 KB
testcase_13 AC 468 ms
76,644 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,513 ms
76,860 KB
testcase_21 AC 1,767 ms
76,888 KB
testcase_22 AC 371 ms
75,960 KB
testcase_23 TLE -
testcase_24 AC 304 ms
76,316 KB
testcase_25 AC 634 ms
76,116 KB
testcase_26 AC 244 ms
75,960 KB
testcase_27 AC 60 ms
67,460 KB
testcase_28 AC 71 ms
69,796 KB
testcase_29 AC 66 ms
69,360 KB
testcase_30 AC 361 ms
76,452 KB
testcase_31 AC 349 ms
76,320 KB
testcase_32 AC 345 ms
75,988 KB
testcase_33 AC 332 ms
76,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mul1(mod=998244353):
    n = len(graph)
    ret = [[0]*n for i in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                ret[i][j] += graph[i][k] * graph[k][j]
                ret[i][j] %= mod
    return ret


def mul2(mod=998244353):
    n = len(graph)
    ret = [[0]*n for i in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                ret[i][j] += graph[i][k] * ans[k][j]
                ret[i][j] %= mod
    return ret


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 = mul2()
    graph = mul1()

print(ans[0][0])
0