結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ryusukeryusuke
提出日時 2023-07-09 18:18:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,168 KB
最終ジャッジ日時 2024-07-23 15:35:21
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 289 ms
12,416 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 204 ms
18,688 KB
testcase_11 AC 202 ms
18,688 KB
testcase_12 AC 446 ms
33,792 KB
testcase_13 AC 33 ms
10,880 KB
testcase_14 AC 44 ms
11,008 KB
testcase_15 AC 86 ms
11,392 KB
testcase_16 AC 134 ms
12,160 KB
testcase_17 AC 346 ms
22,016 KB
testcase_18 AC 495 ms
39,168 KB
testcase_19 AC 310 ms
16,128 KB
testcase_20 AC 43 ms
11,520 KB
testcase_21 AC 39 ms
11,008 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 159 ms
16,128 KB
testcase_26 AC 74 ms
12,800 KB
testcase_27 AC 52 ms
11,648 KB
testcase_28 AC 288 ms
12,416 KB
testcase_29 AC 269 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# verification-helper: PROBLEM https://yukicoder.me/problems/no/1749

from collections import deque

def main() -> None:
    n, m, t = map(int, input().split())
    
    g = [[] for _ in range(n)]
    for _ in range(m):
        x, y = map(int, input().split())
        g[x].append(y)
        g[y].append(x)
    mod = 998244353

    # dp[i][j] := i 日目に都市 j で感染している人数の合計
    dp = [[0] * (n + 1) for _ in range(t + 1)]
    dp[0][0] = 1
    for i in range(1, t + 1):
        for j in range(n):
            cnt = 0
            for nxt in g[j]:
                cnt += dp[i - 1][nxt]
                cnt %= mod

            dp[i][j] = cnt
            dp[i][j] %= mod

    print(dp[t][0])


if __name__ == "__main__":
    main()
0