結果

問題 No.1340 おーじ君をさがせ
ユーザー titiatitia
提出日時 2021-01-15 23:14:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,071 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 87,936 KB
最終ジャッジ日時 2024-05-05 03:01:07
合計ジャッジ時間 10,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
68,736 KB
testcase_01 AC 51 ms
61,440 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 42 ms
58,496 KB
testcase_04 AC 46 ms
61,568 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 47 ms
60,672 KB
testcase_07 AC 49 ms
61,440 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 74 ms
75,776 KB
testcase_11 AC 428 ms
78,208 KB
testcase_12 AC 221 ms
77,952 KB
testcase_13 AC 544 ms
82,176 KB
testcase_14 AC 1,105 ms
87,936 KB
testcase_15 AC 793 ms
83,328 KB
testcase_16 AC 190 ms
77,568 KB
testcase_17 AC 279 ms
78,080 KB
testcase_18 AC 523 ms
83,200 KB
testcase_19 AC 75 ms
69,760 KB
testcase_20 AC 97 ms
75,904 KB
testcase_21 AC 1,313 ms
81,408 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,T=map(int,input().split())

mod=1+(1<<60)

# 行列の計算(numpyを使えないとき,modを使用)
def prod(A,B,k,l,m):# A:k*l,B:l*m
    C=[[None for i in range(m)] for j in range(k)]

    for i in range(k):
        for j in range(m):
            ANS=0
            for pl in range(l):
                ANS=(ANS+A[i][pl]*B[pl][j])%mod

            C[i][j]=ANS

    return C

def plus(A,B,k,l):# a,B:k*l
    C=[[None for i in range(l)] for j in range(k)]

    for i in range(k):
        for j in range(l):
            C[i][j]=(A[i][j]+B[i][j])%mod

    return C

A=[[0]*N for i in range(N)]

for i in range(M):
    a,b=map(int,input().split())
    A[a][b]=1

# 漸化式を行列累乗で求める(ダブリング)

POWA=[A]

for i in range(60):
    POWA.append(prod(POWA[-1],POWA[-1],N,N,N)) # ベキを求めて


X=[[0]*N]
X[0][0]=1
#print(X)
while T:
    X=prod(X,POWA[T.bit_length()-1],1,N,N) # n乗の場合
    T-=1<<(T.bit_length()-1)

#print(X)

ANS=0
for i in X[0]:
    if i>0:
        ANS+=1

print(ANS)
    
0