結果

問題 No.1340 おーじ君をさがせ
ユーザー nephrologistnephrologist
提出日時 2021-01-15 22:25:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 853 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-11-26 19:51:07
合計ジャッジ時間 76,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,000 KB
testcase_01 AC 27 ms
21,376 KB
testcase_02 AC 30 ms
15,872 KB
testcase_03 AC 25 ms
21,632 KB
testcase_04 WA -
testcase_05 AC 27 ms
21,888 KB
testcase_06 WA -
testcase_07 AC 27 ms
15,872 KB
testcase_08 AC 27 ms
16,000 KB
testcase_09 AC 27 ms
21,760 KB
testcase_10 AC 39 ms
16,000 KB
testcase_11 AC 1,490 ms
21,760 KB
testcase_12 WA -
testcase_13 AC 1,136 ms
21,760 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 216 ms
16,128 KB
testcase_17 AC 864 ms
21,632 KB
testcase_18 AC 1,547 ms
17,572 KB
testcase_19 AC 93 ms
21,632 KB
testcase_20 AC 39 ms
17,440 KB
testcase_21 AC 1,820 ms
21,760 KB
testcase_22 TLE -
testcase_23 AC 1,805 ms
10,752 KB
testcase_24 TLE -
testcase_25 AC 206 ms
10,880 KB
testcase_26 AC 136 ms
10,624 KB
testcase_27 AC 101 ms
10,624 KB
testcase_28 AC 293 ms
10,752 KB
testcase_29 AC 52 ms
10,752 KB
testcase_30 AC 1,996 ms
10,752 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 29 ms
10,624 KB
testcase_37 AC 55 ms
10,752 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 WA -
testcase_43 AC 27 ms
10,624 KB
testcase_44 AC 29 ms
10,624 KB
testcase_45 AC 28 ms
10,624 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 1,943 ms
11,008 KB
testcase_49 AC 1,981 ms
11,136 KB
testcase_50 AC 1,883 ms
11,136 KB
testcase_51 AC 1,902 ms
11,136 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 28 ms
10,752 KB
testcase_57 AC 28 ms
10,752 KB
testcase_58 AC 27 ms
10,624 KB
testcase_59 WA -
testcase_60 AC 27 ms
10,752 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#  nxnの行列積
# n is necessary


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]
                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


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

res = matrix_exponents(graph, t)
ans = 0

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

print(ans)
0