結果

問題 No.1340 おーじ君をさがせ
ユーザー nephrologistnephrologist
提出日時 2021-01-15 23:51:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 813 ms / 2,000 ms
コード長 919 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,240 KB
最終ジャッジ日時 2024-05-05 22:00:14
合計ジャッジ時間 14,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 52 ms
63,488 KB
testcase_11 AC 173 ms
76,048 KB
testcase_12 AC 72 ms
68,096 KB
testcase_13 AC 266 ms
76,636 KB
testcase_14 AC 288 ms
76,072 KB
testcase_15 AC 257 ms
76,244 KB
testcase_16 AC 67 ms
67,200 KB
testcase_17 AC 126 ms
75,904 KB
testcase_18 AC 171 ms
75,976 KB
testcase_19 AC 56 ms
64,256 KB
testcase_20 AC 50 ms
62,208 KB
testcase_21 AC 184 ms
76,216 KB
testcase_22 AC 813 ms
80,240 KB
testcase_23 AC 177 ms
76,168 KB
testcase_24 AC 648 ms
76,824 KB
testcase_25 AC 70 ms
71,424 KB
testcase_26 AC 63 ms
68,608 KB
testcase_27 AC 59 ms
68,224 KB
testcase_28 AC 76 ms
72,704 KB
testcase_29 AC 55 ms
65,024 KB
testcase_30 AC 201 ms
76,288 KB
testcase_31 AC 734 ms
77,020 KB
testcase_32 AC 619 ms
76,672 KB
testcase_33 AC 608 ms
76,928 KB
testcase_34 AC 553 ms
76,792 KB
testcase_35 AC 659 ms
76,800 KB
testcase_36 AC 37 ms
52,096 KB
testcase_37 AC 46 ms
61,952 KB
testcase_38 AC 649 ms
77,028 KB
testcase_39 AC 225 ms
76,288 KB
testcase_40 AC 230 ms
76,488 KB
testcase_41 AC 224 ms
76,544 KB
testcase_42 AC 44 ms
58,880 KB
testcase_43 AC 44 ms
59,008 KB
testcase_44 AC 49 ms
61,440 KB
testcase_45 AC 45 ms
59,392 KB
testcase_46 AC 190 ms
76,520 KB
testcase_47 AC 195 ms
76,704 KB
testcase_48 AC 212 ms
76,288 KB
testcase_49 AC 195 ms
76,284 KB
testcase_50 AC 197 ms
76,396 KB
testcase_51 AC 199 ms
76,256 KB
testcase_52 AC 334 ms
76,288 KB
testcase_53 AC 308 ms
76,232 KB
testcase_54 AC 340 ms
76,032 KB
testcase_55 AC 261 ms
76,288 KB
testcase_56 AC 44 ms
60,416 KB
testcase_57 AC 45 ms
59,904 KB
testcase_58 AC 39 ms
52,736 KB
testcase_59 AC 136 ms
72,320 KB
testcase_60 AC 37 ms
52,352 KB
testcase_61 AC 137 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline
#  nxnの行列積
# n is necessary


n, m, t = map(int, input().split())

graph = [[0] * (n) for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    graph[a][b] = 1


def matrix_product(A, B):
    res = [[0] * n for _ in range(n)]
    for i in range(n):
        for k in range(n):
            for j in range(n):
                res[i][j] += A[i][k] * B[k][j]
    for i in range(n):
        for j in range(n):
            if res[i][j]:
                res[i][j] = 1
    return res


def matrix_exponents(A, t):
    res = [[0] * n for _ in range(n)]
    for i in range(n):
        res[i][i] = 1

    while t > 0:
        if t & 1 == 1:
            res = matrix_product(res, A)
        A = matrix_product(A, A)
        t //= 2
    return res


res = matrix_exponents(graph, t)
ans = 0

for j in range(n):
    if res[0][j]:
        ans += 1

print(ans)
0