結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 48 ms
58,880 KB
testcase_04 AC 120 ms
73,600 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 452 ms
76,160 KB
testcase_09 AC 454 ms
76,012 KB
testcase_10 AC 453 ms
76,276 KB
testcase_11 AC 369 ms
76,800 KB
testcase_12 AC 491 ms
76,416 KB
testcase_13 AC 461 ms
76,544 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,487 ms
76,672 KB
testcase_21 AC 1,759 ms
77,184 KB
testcase_22 AC 373 ms
75,816 KB
testcase_23 TLE -
testcase_24 AC 304 ms
76,288 KB
testcase_25 AC 630 ms
76,240 KB
testcase_26 AC 244 ms
75,940 KB
testcase_27 AC 62 ms
66,944 KB
testcase_28 AC 71 ms
68,864 KB
testcase_29 AC 66 ms
69,120 KB
testcase_30 AC 364 ms
76,288 KB
testcase_31 AC 368 ms
76,380 KB
testcase_32 AC 344 ms
76,416 KB
testcase_33 AC 334 ms
76,292 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