結果

問題 No.1340 おーじ君をさがせ
ユーザー ygd.ygd.
提出日時 2021-01-17 00:32:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 858 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 81,296 KB
最終ジャッジ日時 2024-05-06 09:54:42
合計ジャッジ時間 27,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,532 KB
testcase_01 AC 37 ms
52,968 KB
testcase_02 AC 36 ms
53,232 KB
testcase_03 AC 36 ms
53,332 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,508 KB
testcase_06 WA -
testcase_07 AC 37 ms
53,628 KB
testcase_08 AC 36 ms
52,128 KB
testcase_09 AC 37 ms
52,128 KB
testcase_10 AC 50 ms
64,844 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 410 ms
77,068 KB
testcase_14 AC 661 ms
75,916 KB
testcase_15 AC 563 ms
75,912 KB
testcase_16 WA -
testcase_17 AC 222 ms
76,016 KB
testcase_18 AC 352 ms
75,968 KB
testcase_19 AC 60 ms
64,384 KB
testcase_20 WA -
testcase_21 AC 377 ms
76,536 KB
testcase_22 AC 1,387 ms
81,296 KB
testcase_23 AC 382 ms
76,320 KB
testcase_24 AC 1,688 ms
77,280 KB
testcase_25 AC 99 ms
76,436 KB
testcase_26 AC 89 ms
76,436 KB
testcase_27 AC 84 ms
76,408 KB
testcase_28 AC 115 ms
76,372 KB
testcase_29 AC 69 ms
73,364 KB
testcase_30 AC 408 ms
76,324 KB
testcase_31 AC 1,683 ms
77,312 KB
testcase_32 AC 1,508 ms
77,284 KB
testcase_33 AC 1,500 ms
77,184 KB
testcase_34 AC 1,348 ms
77,080 KB
testcase_35 AC 1,637 ms
77,104 KB
testcase_36 AC 38 ms
53,024 KB
testcase_37 AC 65 ms
73,312 KB
testcase_38 AC 1,641 ms
77,160 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 45 ms
62,868 KB
testcase_45 AC 44 ms
60,768 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 403 ms
76,152 KB
testcase_50 AC 402 ms
75,920 KB
testcase_51 AC 403 ms
76,432 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 46 ms
61,608 KB
testcase_57 AC 44 ms
60,776 KB
testcase_58 AC 36 ms
53,164 KB
testcase_59 WA -
testcase_60 AC 36 ms
53,128 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

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[a][b] = 1

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