結果

問題 No.1749 ラムドスウイルスの感染拡大
ユーザー ThetaTheta
提出日時 2022-10-26 18:37:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 751 ms / 2,000 ms
コード長 1,164 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-07-04 07:25:53
合計ジャッジ時間 7,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 319 ms
11,136 KB
testcase_05 AC 32 ms
10,496 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 527 ms
10,880 KB
testcase_11 AC 531 ms
10,624 KB
testcase_12 AC 751 ms
12,160 KB
testcase_13 AC 35 ms
10,624 KB
testcase_14 AC 43 ms
10,624 KB
testcase_15 AC 82 ms
10,880 KB
testcase_16 AC 126 ms
10,752 KB
testcase_17 AC 376 ms
11,136 KB
testcase_18 AC 695 ms
11,520 KB
testcase_19 AC 470 ms
11,008 KB
testcase_20 AC 50 ms
10,880 KB
testcase_21 AC 50 ms
10,624 KB
testcase_22 AC 32 ms
10,496 KB
testcase_23 AC 32 ms
10,752 KB
testcase_24 AC 32 ms
10,752 KB
testcase_25 AC 382 ms
10,880 KB
testcase_26 AC 151 ms
10,880 KB
testcase_27 AC 95 ms
10,624 KB
testcase_28 AC 320 ms
11,136 KB
testcase_29 AC 291 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Town:
    def __init__(self, init: int):
        self.current = 0
        self.before = init
        self.neighbors = []

    def connect(self, other):
        self.neighbors.append(other)

    def next_career(self):
        self.current = sum(neighbor.before for neighbor in self.neighbors)

    def daily(self):
        self.before = self.current
        self.current = 0


class Network:
    def __init__(self, num: int):
        self.towns = [Town(0) for _ in range(num)]
        self.towns[0].before = 1
        self.day = 0

    def update(self):
        for town in self.towns:
            town.next_career()
        for town in self.towns:
            town.daily()
        self.day += 1

    def connect(self, num1: int, num2: int):
        self.towns[num1].connect(self.towns[num2])
        self.towns[num2].connect(self.towns[num1])


def main():
    N, M, T = map(int, input().split())
    network = Network(N)
    for _ in range(M):
        s, t = map(int, input().split())
        network.connect(s, t)

    while network.day < T:
        network.update()

    print(network.towns[0].before % 998244353)


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