結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 44 ms
51,712 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 44 ms
51,712 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 52 ms
62,848 KB
testcase_11 AC 184 ms
75,648 KB
testcase_12 AC 74 ms
67,840 KB
testcase_13 AC 297 ms
76,544 KB
testcase_14 AC 328 ms
76,048 KB
testcase_15 AC 279 ms
75,776 KB
testcase_16 AC 69 ms
67,200 KB
testcase_17 AC 131 ms
76,032 KB
testcase_18 AC 188 ms
75,776 KB
testcase_19 AC 59 ms
64,640 KB
testcase_20 AC 51 ms
61,696 KB
testcase_21 AC 194 ms
75,904 KB
testcase_22 AC 946 ms
80,364 KB
testcase_23 AC 189 ms
75,904 KB
testcase_24 AC 733 ms
76,544 KB
testcase_25 AC 71 ms
71,040 KB
testcase_26 AC 63 ms
69,120 KB
testcase_27 AC 61 ms
67,840 KB
testcase_28 AC 76 ms
72,704 KB
testcase_29 AC 56 ms
65,024 KB
testcase_30 AC 208 ms
75,904 KB
testcase_31 AC 738 ms
76,160 KB
testcase_32 AC 694 ms
76,416 KB
testcase_33 AC 690 ms
76,672 KB
testcase_34 AC 627 ms
76,544 KB
testcase_35 AC 748 ms
76,800 KB
testcase_36 AC 41 ms
52,096 KB
testcase_37 AC 48 ms
62,080 KB
testcase_38 AC 745 ms
76,800 KB
testcase_39 AC 233 ms
76,160 KB
testcase_40 AC 241 ms
76,288 KB
testcase_41 AC 239 ms
76,288 KB
testcase_42 AC 47 ms
58,752 KB
testcase_43 AC 45 ms
59,136 KB
testcase_44 AC 49 ms
61,440 KB
testcase_45 AC 45 ms
59,008 KB
testcase_46 AC 191 ms
76,544 KB
testcase_47 AC 201 ms
75,904 KB
testcase_48 AC 216 ms
76,288 KB
testcase_49 AC 214 ms
75,776 KB
testcase_50 AC 213 ms
76,196 KB
testcase_51 AC 214 ms
75,776 KB
testcase_52 AC 359 ms
76,032 KB
testcase_53 AC 349 ms
76,288 KB
testcase_54 AC 358 ms
76,064 KB
testcase_55 AC 289 ms
76,548 KB
testcase_56 AC 47 ms
59,520 KB
testcase_57 AC 48 ms
59,520 KB
testcase_58 AC 40 ms
51,840 KB
testcase_59 AC 144 ms
72,192 KB
testcase_60 AC 40 ms
52,480 KB
testcase_61 AC 145 ms
72,320 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