結果

問題 No.1340 おーじ君をさがせ
ユーザー ygd.ygd.
提出日時 2021-01-17 00:40:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,541 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,024 KB
最終ジャッジ日時 2024-05-06 10:12:58
合計ジャッジ時間 24,966 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 34 ms
51,968 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 51 ms
64,512 KB
testcase_11 AC 316 ms
75,952 KB
testcase_12 AC 94 ms
67,072 KB
testcase_13 AC 379 ms
77,440 KB
testcase_14 AC 613 ms
76,004 KB
testcase_15 AC 521 ms
75,648 KB
testcase_16 AC 85 ms
66,688 KB
testcase_17 AC 219 ms
75,648 KB
testcase_18 AC 337 ms
76,032 KB
testcase_19 AC 60 ms
63,744 KB
testcase_20 AC 48 ms
60,928 KB
testcase_21 AC 370 ms
76,672 KB
testcase_22 AC 1,287 ms
81,024 KB
testcase_23 AC 354 ms
76,368 KB
testcase_24 AC 1,541 ms
77,312 KB
testcase_25 AC 101 ms
76,544 KB
testcase_26 AC 87 ms
76,288 KB
testcase_27 AC 84 ms
76,416 KB
testcase_28 AC 116 ms
76,288 KB
testcase_29 AC 68 ms
73,472 KB
testcase_30 AC 390 ms
76,776 KB
testcase_31 AC 1,515 ms
77,312 KB
testcase_32 AC 1,374 ms
77,184 KB
testcase_33 AC 1,378 ms
77,056 KB
testcase_34 AC 1,248 ms
76,928 KB
testcase_35 AC 1,478 ms
77,312 KB
testcase_36 AC 36 ms
52,096 KB
testcase_37 AC 65 ms
72,576 KB
testcase_38 AC 1,502 ms
77,236 KB
testcase_39 AC 437 ms
76,668 KB
testcase_40 AC 449 ms
76,544 KB
testcase_41 AC 483 ms
76,416 KB
testcase_42 AC 43 ms
59,520 KB
testcase_43 AC 43 ms
59,520 KB
testcase_44 AC 46 ms
61,952 KB
testcase_45 AC 44 ms
60,544 KB
testcase_46 AC 353 ms
76,544 KB
testcase_47 AC 359 ms
76,928 KB
testcase_48 AC 397 ms
77,056 KB
testcase_49 AC 383 ms
76,288 KB
testcase_50 AC 374 ms
75,648 KB
testcase_51 AC 381 ms
76,032 KB
testcase_52 AC 680 ms
75,776 KB
testcase_53 AC 664 ms
76,092 KB
testcase_54 AC 688 ms
75,776 KB
testcase_55 AC 546 ms
76,544 KB
testcase_56 AC 45 ms
60,672 KB
testcase_57 AC 44 ms
60,928 KB
testcase_58 AC 37 ms
52,352 KB
testcase_59 AC 236 ms
71,552 KB
testcase_60 AC 36 ms
52,480 KB
testcase_61 AC 239 ms
72,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mat_dot(A, B, MOD=pow(10,9)+7):
  #A:n*m行列, B:m*l行列
  n, m, l = len(A), len(A[0]), len(B[0])
  X = [[0]*l for i in range(n)]
  for i in range(n):
    for j in range(l):
      temp = 0
      for k in range(m):
        temp = (temp|(A[i][k]&B[k][j])) % MOD
      X[i][j] = temp
  return X
 
def mat_pow(A, x, MOD=pow(10,9)+7):
  #A^x
  n = len(A)
  X = [[0] * n for i in range(n)]
  for i in range(n):
    X[i][i] = 1
  for i in range(x.bit_length()):
    if (x>>i)&1:
      X = mat_dot(X, A, MOD)
    A = mat_dot(A, A, MOD)
  return X

N,M,T = map(int,input().split())
A = [[0]*N for _ in range(N)] 
for i in range(M):
    a,b = map(int,input().split())
    A[b][a] = 1
#print(A)
AT = mat_pow(A,T)
I = [[0] for _ in range(N)]
#print(I)
I[0][0] = 1
#print(AT)
ANS = mat_dot(AT,I)
#print(ANS)
ret = 0
for x in ANS:
    for y in x:
        ret += y
print(ret)
0