結果

問題 No.1340 おーじ君をさがせ
ユーザー titiatitia
提出日時 2021-01-15 23:15:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,432 ms / 2,000 ms
コード長 1,071 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-05-05 21:58:41
合計ジャッジ時間 39,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,696 KB
testcase_01 AC 49 ms
61,184 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 43 ms
59,008 KB
testcase_04 AC 46 ms
60,288 KB
testcase_05 AC 38 ms
52,736 KB
testcase_06 AC 46 ms
60,800 KB
testcase_07 AC 46 ms
60,672 KB
testcase_08 AC 37 ms
52,704 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 53 ms
65,356 KB
testcase_11 AC 431 ms
78,336 KB
testcase_12 AC 131 ms
78,384 KB
testcase_13 AC 490 ms
82,168 KB
testcase_14 AC 1,073 ms
88,664 KB
testcase_15 AC 809 ms
83,072 KB
testcase_16 AC 101 ms
73,984 KB
testcase_17 AC 283 ms
78,208 KB
testcase_18 AC 543 ms
83,456 KB
testcase_19 AC 72 ms
69,976 KB
testcase_20 AC 56 ms
64,896 KB
testcase_21 AC 282 ms
77,620 KB
testcase_22 AC 866 ms
85,776 KB
testcase_23 AC 276 ms
77,672 KB
testcase_24 AC 1,406 ms
88,132 KB
testcase_25 AC 86 ms
77,004 KB
testcase_26 AC 75 ms
72,960 KB
testcase_27 AC 71 ms
72,064 KB
testcase_28 AC 98 ms
77,380 KB
testcase_29 AC 56 ms
68,264 KB
testcase_30 AC 303 ms
77,440 KB
testcase_31 AC 1,382 ms
87,552 KB
testcase_32 AC 1,324 ms
87,552 KB
testcase_33 AC 1,314 ms
87,480 KB
testcase_34 AC 1,266 ms
88,112 KB
testcase_35 AC 1,260 ms
87,552 KB
testcase_36 AC 38 ms
51,968 KB
testcase_37 AC 47 ms
63,872 KB
testcase_38 AC 1,412 ms
87,168 KB
testcase_39 AC 1,432 ms
87,916 KB
testcase_40 AC 1,419 ms
87,936 KB
testcase_41 AC 1,409 ms
87,552 KB
testcase_42 AC 50 ms
62,592 KB
testcase_43 AC 49 ms
62,336 KB
testcase_44 AC 51 ms
63,360 KB
testcase_45 AC 51 ms
62,720 KB
testcase_46 AC 1,412 ms
88,336 KB
testcase_47 AC 1,410 ms
88,296 KB
testcase_48 AC 1,395 ms
88,212 KB
testcase_49 AC 1,406 ms
88,448 KB
testcase_50 AC 1,403 ms
88,448 KB
testcase_51 AC 1,397 ms
88,192 KB
testcase_52 AC 1,400 ms
88,832 KB
testcase_53 AC 1,396 ms
88,576 KB
testcase_54 AC 1,396 ms
88,576 KB
testcase_55 AC 1,399 ms
88,356 KB
testcase_56 AC 46 ms
60,672 KB
testcase_57 AC 46 ms
60,672 KB
testcase_58 AC 40 ms
53,120 KB
testcase_59 AC 1,393 ms
88,448 KB
testcase_60 AC 39 ms
52,864 KB
testcase_61 AC 1,396 ms
88,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

mod=1+(1<<30)

# 行列の計算(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