結果

問題 No.1340 おーじ君をさがせ
ユーザー chineristACchineristAC
提出日時 2021-01-16 00:56:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,672 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-05-05 22:02:45
合計ジャッジ時間 13,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
52,428 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 51 ms
64,384 KB
testcase_11 AC 119 ms
77,056 KB
testcase_12 AC 84 ms
70,784 KB
testcase_13 AC 195 ms
77,056 KB
testcase_14 AC 170 ms
76,928 KB
testcase_15 AC 148 ms
76,928 KB
testcase_16 AC 76 ms
69,632 KB
testcase_17 AC 87 ms
76,288 KB
testcase_18 AC 111 ms
77,280 KB
testcase_19 AC 55 ms
64,768 KB
testcase_20 AC 52 ms
62,592 KB
testcase_21 AC 187 ms
77,644 KB
testcase_22 AC 784 ms
80,768 KB
testcase_23 AC 184 ms
77,184 KB
testcase_24 AC 1,672 ms
81,408 KB
testcase_25 AC 89 ms
76,544 KB
testcase_26 AC 83 ms
76,928 KB
testcase_27 AC 79 ms
76,512 KB
testcase_28 AC 99 ms
76,672 KB
testcase_29 AC 71 ms
73,856 KB
testcase_30 AC 192 ms
77,952 KB
testcase_31 AC 578 ms
81,280 KB
testcase_32 AC 332 ms
81,152 KB
testcase_33 AC 330 ms
81,152 KB
testcase_34 AC 515 ms
81,024 KB
testcase_35 AC 597 ms
81,152 KB
testcase_36 AC 38 ms
52,096 KB
testcase_37 AC 67 ms
73,088 KB
testcase_38 AC 342 ms
81,152 KB
testcase_39 AC 209 ms
77,012 KB
testcase_40 AC 208 ms
76,908 KB
testcase_41 AC 210 ms
76,812 KB
testcase_42 AC 43 ms
58,880 KB
testcase_43 AC 41 ms
58,240 KB
testcase_44 AC 45 ms
60,544 KB
testcase_45 AC 43 ms
59,392 KB
testcase_46 AC 207 ms
77,096 KB
testcase_47 AC 224 ms
76,896 KB
testcase_48 AC 262 ms
76,968 KB
testcase_49 AC 167 ms
77,176 KB
testcase_50 AC 173 ms
77,204 KB
testcase_51 AC 173 ms
77,056 KB
testcase_52 AC 177 ms
77,184 KB
testcase_53 AC 175 ms
77,184 KB
testcase_54 AC 178 ms
77,368 KB
testcase_55 AC 288 ms
77,296 KB
testcase_56 AC 45 ms
59,904 KB
testcase_57 AC 46 ms
60,160 KB
testcase_58 AC 37 ms
52,736 KB
testcase_59 AC 92 ms
73,600 KB
testcase_60 AC 38 ms
52,224 KB
testcase_61 AC 92 ms
73,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mmult(A, B):
    n, m, l = len(A), len(B), len(B[0])
    ret = [[0]*l for _ in range(n)]
    for i in range(n):
        for j in range(m):
            for k in range(l):
                if A[i][j] and B[j][k]:
                    ret[i][k] = 1
    return ret
def mpow(A, n):
    if n == 0: return [[1 if i == j else 0 for j in range(len(A))] for i in range(len(A))]
    if n % 2: return mmult(mpow(A, n-1), A)
    return mpow(mmult(A, A), n//2)

N,M,T = map(int,input().split())
A = [[0 for j in range(N)] for i in range(N)]
for i in range(M):
    a,b = map(int,input().split())
    if not A[b][a]:
        A[b][a] = 1

A = mpow(A,T)
B = [[1]] + [[0]] * (N-1)
A = mmult(A,B)

res = 0
for i in range(N):
    if A[i][0]:
        res += 1

print(res)
0