結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
64,896 KB
testcase_01 AC 44 ms
136,192 KB
testcase_02 AC 39 ms
57,728 KB
testcase_03 AC 39 ms
129,664 KB
testcase_04 WA -
testcase_05 AC 39 ms
129,920 KB
testcase_06 WA -
testcase_07 AC 39 ms
129,408 KB
testcase_08 AC 38 ms
57,600 KB
testcase_09 AC 38 ms
130,156 KB
testcase_10 AC 62 ms
72,576 KB
testcase_11 AC 747 ms
153,424 KB
testcase_12 WA -
testcase_13 AC 698 ms
76,864 KB
testcase_14 AC 1,520 ms
76,592 KB
testcase_15 AC 1,245 ms
76,528 KB
testcase_16 AC 141 ms
72,832 KB
testcase_17 AC 458 ms
76,416 KB
testcase_18 AC 778 ms
76,252 KB
testcase_19 AC 90 ms
68,864 KB
testcase_20 WA -
testcase_21 AC 781 ms
76,160 KB
testcase_22 TLE -
testcase_23 WA -
testcase_24 TLE -
testcase_25 AC 135 ms
76,188 KB
testcase_26 AC 107 ms
76,032 KB
testcase_27 AC 88 ms
72,576 KB
testcase_28 AC 169 ms
76,632 KB
testcase_29 AC 65 ms
68,992 KB
testcase_30 AC 846 ms
76,288 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 39 ms
52,736 KB
testcase_37 AC 48 ms
62,464 KB
testcase_38 TLE -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 46 ms
61,056 KB
testcase_44 AC 52 ms
63,616 KB
testcase_45 AC 48 ms
61,568 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 894 ms
76,800 KB
testcase_49 WA -
testcase_50 AC 901 ms
76,416 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 51 ms
62,592 KB
testcase_57 AC 52 ms
62,592 KB
testcase_58 AC 39 ms
52,992 KB
testcase_59 WA -
testcase_60 AC 38 ms
51,968 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


#  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