結果

問題 No.1340 おーじ君をさがせ
ユーザー nephrologistnephrologist
提出日時 2021-01-15 23:30:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,007 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-05-05 03:04:47
合計ジャッジ時間 13,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
64,768 KB
testcase_01 AC 43 ms
58,880 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 37 ms
51,712 KB
testcase_06 WA -
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 66 ms
67,712 KB
testcase_11 AC 726 ms
76,416 KB
testcase_12 WA -
testcase_13 AC 675 ms
76,928 KB
testcase_14 AC 1,458 ms
76,672 KB
testcase_15 AC 1,234 ms
76,288 KB
testcase_16 AC 137 ms
72,448 KB
testcase_17 AC 439 ms
76,160 KB
testcase_18 AC 729 ms
76,160 KB
testcase_19 AC 84 ms
68,608 KB
testcase_20 WA -
testcase_21 AC 763 ms
76,288 KB
testcase_22 TLE -
testcase_23 WA -
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
権限があれば一括ダウンロードができます

ソースコード

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


#  nxnの行列積
# n is necessary
mod = 10 ** 9 + 7


def matrix_product(A, B, mod):
    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]
                res[i][j] %= mod
    return res


def matrix_exponents(A, t, mod):
    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, mod)
        A = matrix_product(A, A, mod)
        t //= 2
    return res


res1 = matrix_exponents(graph, t, 13)
res2 = matrix_exponents(graph, t, 11)
ans = 0

for j in range(n):
    if res1[0][j] > 0 or res2[0][j]:
        ans += 1

print(ans)
0