結果

問題 No.1340 おーじ君をさがせ
ユーザー ygd.ygd.
提出日時 2021-01-17 00:40:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,705 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 81,180 KB
最終ジャッジ日時 2024-11-28 16:09:20
合計ジャッジ時間 27,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,584 KB
testcase_01 AC 39 ms
52,988 KB
testcase_02 AC 39 ms
52,804 KB
testcase_03 AC 40 ms
54,164 KB
testcase_04 AC 40 ms
53,612 KB
testcase_05 AC 40 ms
54,220 KB
testcase_06 AC 40 ms
52,460 KB
testcase_07 AC 39 ms
53,100 KB
testcase_08 AC 40 ms
53,544 KB
testcase_09 AC 41 ms
53,204 KB
testcase_10 AC 54 ms
66,968 KB
testcase_11 AC 352 ms
75,844 KB
testcase_12 AC 97 ms
67,540 KB
testcase_13 AC 417 ms
77,068 KB
testcase_14 AC 675 ms
76,032 KB
testcase_15 AC 570 ms
75,968 KB
testcase_16 AC 86 ms
67,924 KB
testcase_17 AC 226 ms
75,652 KB
testcase_18 AC 359 ms
75,720 KB
testcase_19 AC 64 ms
64,568 KB
testcase_20 AC 49 ms
61,736 KB
testcase_21 AC 386 ms
76,368 KB
testcase_22 AC 1,410 ms
81,180 KB
testcase_23 AC 387 ms
76,352 KB
testcase_24 AC 1,704 ms
77,308 KB
testcase_25 AC 105 ms
76,500 KB
testcase_26 AC 91 ms
76,436 KB
testcase_27 AC 86 ms
76,304 KB
testcase_28 AC 118 ms
76,184 KB
testcase_29 AC 73 ms
73,516 KB
testcase_30 AC 415 ms
76,412 KB
testcase_31 AC 1,705 ms
77,152 KB
testcase_32 AC 1,529 ms
77,080 KB
testcase_33 AC 1,514 ms
77,200 KB
testcase_34 AC 1,378 ms
76,948 KB
testcase_35 AC 1,659 ms
77,680 KB
testcase_36 AC 40 ms
52,960 KB
testcase_37 AC 67 ms
73,176 KB
testcase_38 AC 1,660 ms
77,316 KB
testcase_39 AC 474 ms
76,544 KB
testcase_40 AC 494 ms
76,528 KB
testcase_41 AC 499 ms
76,772 KB
testcase_42 AC 44 ms
60,412 KB
testcase_43 AC 45 ms
59,448 KB
testcase_44 AC 48 ms
62,184 KB
testcase_45 AC 47 ms
60,440 KB
testcase_46 AC 378 ms
76,692 KB
testcase_47 AC 395 ms
76,760 KB
testcase_48 AC 436 ms
76,600 KB
testcase_49 AC 413 ms
75,944 KB
testcase_50 AC 414 ms
75,876 KB
testcase_51 AC 414 ms
76,084 KB
testcase_52 AC 755 ms
75,924 KB
testcase_53 AC 736 ms
75,872 KB
testcase_54 AC 750 ms
75,868 KB
testcase_55 AC 603 ms
76,520 KB
testcase_56 AC 47 ms
62,460 KB
testcase_57 AC 47 ms
60,904 KB
testcase_58 AC 40 ms
53,076 KB
testcase_59 AC 259 ms
71,932 KB
testcase_60 AC 39 ms
52,632 KB
testcase_61 AC 259 ms
72,124 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