結果

問題 No.1340 おーじ君をさがせ
ユーザー convexineqconvexineq
提出日時 2021-01-15 21:52:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 831 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-05-05 21:45:22
合計ジャッジ時間 12,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 35 ms
51,584 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 49 ms
62,848 KB
testcase_11 AC 162 ms
75,904 KB
testcase_12 AC 66 ms
65,920 KB
testcase_13 AC 259 ms
77,056 KB
testcase_14 AC 268 ms
76,032 KB
testcase_15 AC 237 ms
75,904 KB
testcase_16 AC 62 ms
65,024 KB
testcase_17 AC 113 ms
74,368 KB
testcase_18 AC 166 ms
75,648 KB
testcase_19 AC 52 ms
62,592 KB
testcase_20 AC 45 ms
60,544 KB
testcase_21 AC 167 ms
77,184 KB
testcase_22 AC 831 ms
80,128 KB
testcase_23 AC 171 ms
76,928 KB
testcase_24 AC 625 ms
79,104 KB
testcase_25 AC 67 ms
70,912 KB
testcase_26 AC 59 ms
67,968 KB
testcase_27 AC 55 ms
66,688 KB
testcase_28 AC 78 ms
72,448 KB
testcase_29 AC 55 ms
64,896 KB
testcase_30 AC 187 ms
76,928 KB
testcase_31 AC 629 ms
79,360 KB
testcase_32 AC 605 ms
79,232 KB
testcase_33 AC 579 ms
79,360 KB
testcase_34 AC 534 ms
79,744 KB
testcase_35 AC 630 ms
79,360 KB
testcase_36 AC 37 ms
52,224 KB
testcase_37 AC 47 ms
63,360 KB
testcase_38 AC 639 ms
78,976 KB
testcase_39 AC 197 ms
77,824 KB
testcase_40 AC 221 ms
77,440 KB
testcase_41 AC 205 ms
77,440 KB
testcase_42 AC 42 ms
59,136 KB
testcase_43 AC 41 ms
57,984 KB
testcase_44 AC 44 ms
60,544 KB
testcase_45 AC 43 ms
59,520 KB
testcase_46 AC 163 ms
76,160 KB
testcase_47 AC 166 ms
76,032 KB
testcase_48 AC 181 ms
75,904 KB
testcase_49 AC 193 ms
75,904 KB
testcase_50 AC 177 ms
75,648 KB
testcase_51 AC 177 ms
75,904 KB
testcase_52 AC 306 ms
75,520 KB
testcase_53 AC 293 ms
75,904 KB
testcase_54 AC 298 ms
76,288 KB
testcase_55 AC 240 ms
76,160 KB
testcase_56 AC 43 ms
60,032 KB
testcase_57 AC 44 ms
60,032 KB
testcase_58 AC 35 ms
52,608 KB
testcase_59 AC 118 ms
69,376 KB
testcase_60 AC 35 ms
52,096 KB
testcase_61 AC 121 ms
69,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def matmul(A,B): # A,B: 行列
    n = len(A)
    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]
    return res

def matpow(A,p): #A^p mod M
    if p%2:
        return matmul(A, matpow(A,p-1))
    elif p > 0:
        b = matpow(A,p//2)
        return matmul(b,b)
    else:
        return [[1 if i == j else 0 for j in range(len(A))] for i in range(len(A))]

n,m,t,*ab = map(int,open(0).read().split())
g = [[0]*n for _ in range(n)]
for i in range(m):
    g[ab[i*2]][ab[i*2+1]]=1
A = matpow(g,t)
print(sum(A[0]))
0