結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,036 KB
testcase_01 AC 39 ms
53,508 KB
testcase_02 AC 39 ms
52,688 KB
testcase_03 AC 39 ms
52,888 KB
testcase_04 WA -
testcase_05 AC 39 ms
53,260 KB
testcase_06 WA -
testcase_07 AC 40 ms
52,924 KB
testcase_08 AC 38 ms
52,620 KB
testcase_09 AC 40 ms
53,076 KB
testcase_10 AC 54 ms
65,648 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 417 ms
77,108 KB
testcase_14 AC 670 ms
75,732 KB
testcase_15 AC 561 ms
76,096 KB
testcase_16 WA -
testcase_17 AC 224 ms
76,056 KB
testcase_18 AC 358 ms
75,952 KB
testcase_19 AC 62 ms
64,180 KB
testcase_20 WA -
testcase_21 AC 384 ms
76,336 KB
testcase_22 AC 1,401 ms
81,140 KB
testcase_23 AC 386 ms
76,300 KB
testcase_24 AC 1,697 ms
77,252 KB
testcase_25 AC 105 ms
76,652 KB
testcase_26 AC 92 ms
76,268 KB
testcase_27 AC 85 ms
76,460 KB
testcase_28 AC 117 ms
76,288 KB
testcase_29 AC 71 ms
73,988 KB
testcase_30 AC 414 ms
76,376 KB
testcase_31 AC 1,703 ms
77,088 KB
testcase_32 AC 1,526 ms
77,116 KB
testcase_33 AC 1,502 ms
77,200 KB
testcase_34 AC 1,395 ms
77,156 KB
testcase_35 AC 1,654 ms
77,004 KB
testcase_36 AC 39 ms
53,288 KB
testcase_37 AC 66 ms
73,944 KB
testcase_38 AC 1,657 ms
77,480 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 47 ms
62,148 KB
testcase_45 AC 46 ms
61,312 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 414 ms
75,980 KB
testcase_50 AC 413 ms
76,080 KB
testcase_51 AC 414 ms
76,164 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 47 ms
61,596 KB
testcase_57 AC 47 ms
60,496 KB
testcase_58 AC 39 ms
52,680 KB
testcase_59 WA -
testcase_60 AC 38 ms
53,200 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