結果

問題 No.1340 おーじ君をさがせ
ユーザー nephrologistnephrologist
提出日時 2021-01-15 23:50:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 943 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,512 KB
最終ジャッジ日時 2024-05-05 03:06:27
合計ジャッジ時間 12,727 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 33 ms
51,840 KB
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 34 ms
52,480 KB
testcase_10 AC 45 ms
62,976 KB
testcase_11 AC 163 ms
75,904 KB
testcase_12 WA -
testcase_13 AC 257 ms
76,672 KB
testcase_14 AC 282 ms
75,776 KB
testcase_15 AC 235 ms
75,904 KB
testcase_16 AC 60 ms
66,944 KB
testcase_17 AC 113 ms
76,160 KB
testcase_18 AC 159 ms
75,904 KB
testcase_19 AC 50 ms
64,640 KB
testcase_20 AC 44 ms
62,720 KB
testcase_21 AC 166 ms
76,164 KB
testcase_22 AC 812 ms
80,512 KB
testcase_23 AC 177 ms
76,288 KB
testcase_24 AC 639 ms
76,416 KB
testcase_25 AC 68 ms
71,808 KB
testcase_26 AC 61 ms
69,120 KB
testcase_27 AC 61 ms
67,968 KB
testcase_28 AC 71 ms
73,472 KB
testcase_29 AC 48 ms
66,048 KB
testcase_30 AC 173 ms
76,224 KB
testcase_31 AC 648 ms
77,056 KB
testcase_32 AC 600 ms
76,800 KB
testcase_33 AC 606 ms
76,544 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 35 ms
52,224 KB
testcase_37 AC 42 ms
61,952 KB
testcase_38 WA -
testcase_39 AC 201 ms
76,160 KB
testcase_40 AC 213 ms
76,160 KB
testcase_41 AC 210 ms
76,528 KB
testcase_42 WA -
testcase_43 AC 44 ms
59,136 KB
testcase_44 AC 48 ms
61,056 KB
testcase_45 AC 39 ms
59,520 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 188 ms
76,288 KB
testcase_49 AC 181 ms
75,776 KB
testcase_50 AC 185 ms
76,032 KB
testcase_51 AC 181 ms
76,160 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 39 ms
59,648 KB
testcase_57 AC 39 ms
59,904 KB
testcase_58 AC 35 ms
52,480 KB
testcase_59 WA -
testcase_60 AC 33 ms
52,224 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

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())
    a, b = a - 1, b - 1
    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