結果

問題 No.1750 ラムドスウイルスの感染拡大-hard
ユーザー MineMine
提出日時 2022-01-07 23:01:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-11-14 09:06:24
合計ジャッジ時間 67,312 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,440 KB
testcase_01 AC 30 ms
22,400 KB
testcase_02 AC 31 ms
17,444 KB
testcase_03 AC 31 ms
22,656 KB
testcase_04 AC 482 ms
17,824 KB
testcase_05 AC 30 ms
22,656 KB
testcase_06 AC 30 ms
17,696 KB
testcase_07 AC 31 ms
22,656 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,695 ms
11,008 KB
testcase_27 AC 55 ms
10,624 KB
testcase_28 AC 115 ms
10,624 KB
testcase_29 AC 54 ms
10,624 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

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