結果

問題 No.1340 おーじ君をさがせ
ユーザー chineristACchineristAC
提出日時 2021-01-15 21:53:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,680 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-05-05 21:45:49
合計ジャッジ時間 13,432 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 52 ms
64,000 KB
testcase_11 AC 122 ms
76,672 KB
testcase_12 AC 83 ms
70,656 KB
testcase_13 AC 195 ms
76,544 KB
testcase_14 AC 177 ms
77,312 KB
testcase_15 AC 143 ms
76,800 KB
testcase_16 AC 77 ms
69,504 KB
testcase_17 AC 91 ms
76,032 KB
testcase_18 AC 110 ms
77,184 KB
testcase_19 AC 56 ms
65,024 KB
testcase_20 AC 50 ms
62,720 KB
testcase_21 AC 188 ms
77,056 KB
testcase_22 AC 811 ms
80,768 KB
testcase_23 AC 188 ms
76,800 KB
testcase_24 AC 1,680 ms
81,152 KB
testcase_25 AC 104 ms
76,416 KB
testcase_26 AC 89 ms
76,288 KB
testcase_27 AC 86 ms
76,416 KB
testcase_28 AC 100 ms
76,800 KB
testcase_29 AC 81 ms
73,856 KB
testcase_30 AC 193 ms
77,824 KB
testcase_31 AC 573 ms
80,768 KB
testcase_32 AC 329 ms
80,768 KB
testcase_33 AC 330 ms
81,152 KB
testcase_34 AC 503 ms
80,384 KB
testcase_35 AC 605 ms
80,896 KB
testcase_36 AC 36 ms
52,096 KB
testcase_37 AC 68 ms
73,088 KB
testcase_38 AC 335 ms
80,640 KB
testcase_39 AC 218 ms
76,928 KB
testcase_40 AC 221 ms
76,800 KB
testcase_41 AC 237 ms
76,416 KB
testcase_42 AC 48 ms
58,368 KB
testcase_43 AC 47 ms
57,216 KB
testcase_44 AC 51 ms
60,288 KB
testcase_45 AC 49 ms
58,880 KB
testcase_46 AC 235 ms
76,800 KB
testcase_47 AC 221 ms
76,800 KB
testcase_48 AC 251 ms
76,544 KB
testcase_49 AC 161 ms
77,056 KB
testcase_50 AC 166 ms
76,928 KB
testcase_51 AC 169 ms
77,056 KB
testcase_52 AC 178 ms
77,312 KB
testcase_53 AC 175 ms
77,056 KB
testcase_54 AC 182 ms
77,184 KB
testcase_55 AC 285 ms
76,928 KB
testcase_56 AC 45 ms
60,032 KB
testcase_57 AC 45 ms
60,288 KB
testcase_58 AC 36 ms
52,096 KB
testcase_59 AC 94 ms
73,088 KB
testcase_60 AC 37 ms
51,584 KB
testcase_61 AC 91 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