結果

問題 No.1340 おーじ君をさがせ
ユーザー ayaoniayaoni
提出日時 2021-01-16 02:50:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 840 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 80,576 KB
最終ジャッジ日時 2024-05-05 22:05:33
合計ジャッジ時間 14,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
52,284 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 37 ms
52,736 KB
testcase_10 AC 50 ms
63,872 KB
testcase_11 AC 172 ms
75,648 KB
testcase_12 AC 67 ms
66,304 KB
testcase_13 AC 272 ms
76,544 KB
testcase_14 AC 308 ms
75,904 KB
testcase_15 AC 265 ms
76,196 KB
testcase_16 AC 63 ms
65,664 KB
testcase_17 AC 122 ms
74,240 KB
testcase_18 AC 181 ms
75,904 KB
testcase_19 AC 54 ms
62,976 KB
testcase_20 AC 48 ms
61,184 KB
testcase_21 AC 188 ms
76,288 KB
testcase_22 AC 840 ms
80,576 KB
testcase_23 AC 187 ms
76,316 KB
testcase_24 AC 714 ms
76,924 KB
testcase_25 AC 70 ms
73,840 KB
testcase_26 AC 64 ms
70,400 KB
testcase_27 AC 61 ms
68,992 KB
testcase_28 AC 75 ms
74,240 KB
testcase_29 AC 54 ms
66,944 KB
testcase_30 AC 194 ms
76,416 KB
testcase_31 AC 718 ms
77,016 KB
testcase_32 AC 650 ms
76,808 KB
testcase_33 AC 650 ms
76,852 KB
testcase_34 AC 610 ms
76,800 KB
testcase_35 AC 727 ms
76,928 KB
testcase_36 AC 38 ms
52,992 KB
testcase_37 AC 49 ms
65,664 KB
testcase_38 AC 720 ms
76,960 KB
testcase_39 AC 224 ms
76,512 KB
testcase_40 AC 239 ms
76,288 KB
testcase_41 AC 232 ms
76,468 KB
testcase_42 AC 43 ms
59,776 KB
testcase_43 AC 43 ms
59,648 KB
testcase_44 AC 48 ms
61,056 KB
testcase_45 AC 45 ms
60,416 KB
testcase_46 AC 184 ms
76,288 KB
testcase_47 AC 195 ms
76,416 KB
testcase_48 AC 210 ms
76,416 KB
testcase_49 AC 211 ms
76,032 KB
testcase_50 AC 207 ms
75,904 KB
testcase_51 AC 210 ms
76,032 KB
testcase_52 AC 359 ms
76,284 KB
testcase_53 AC 336 ms
75,904 KB
testcase_54 AC 354 ms
76,028 KB
testcase_55 AC 276 ms
76,416 KB
testcase_56 AC 46 ms
60,800 KB
testcase_57 AC 47 ms
60,416 KB
testcase_58 AC 37 ms
52,608 KB
testcase_59 AC 140 ms
70,656 KB
testcase_60 AC 36 ms
52,480 KB
testcase_61 AC 136 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


def matrix_multiplication(A,B):
    l = len(A)
    m = len(B)
    n = len(B[0])
    C = [[0]*n for _ in range(l)]
    for i in range(l):
        for j in range(n):
            for k in range(m):
                C[i][j] |= A[i][k] & B[k][j]
    return C


def matrix_power(A,n):
    l = len(A)
    C = [[0]*l for _ in range(l)]
    for i in range(l):
        C[i][i] = 1
    while n > 0:
        if n % 2 == 1:
            C = matrix_multiplication(C,A)
        A = matrix_multiplication(A,A)
        n >>= 1
    return C


N,M,T = MI()
Graph = [[0]*N for _ in range(N)]
for _ in range(M):
    a,b = MI()
    Graph[a][b] = 1

X = matrix_power(Graph,T)
ans = sum(X[0])

print(ans)
0