結果

問題 No.1340 おーじ君をさがせ
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-12 17:41:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 81,016 KB
最終ジャッジ日時 2024-07-19 12:14:27
合計ジャッジ時間 10,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,552 KB
testcase_01 AC 38 ms
52,572 KB
testcase_02 AC 38 ms
52,392 KB
testcase_03 AC 39 ms
52,440 KB
testcase_04 AC 38 ms
53,720 KB
testcase_05 AC 39 ms
52,484 KB
testcase_06 AC 39 ms
52,148 KB
testcase_07 AC 38 ms
53,140 KB
testcase_08 AC 38 ms
53,704 KB
testcase_09 AC 38 ms
52,604 KB
testcase_10 AC 50 ms
64,292 KB
testcase_11 AC 104 ms
74,008 KB
testcase_12 AC 62 ms
67,020 KB
testcase_13 AC 200 ms
76,260 KB
testcase_14 AC 190 ms
75,588 KB
testcase_15 AC 161 ms
75,208 KB
testcase_16 AC 59 ms
66,848 KB
testcase_17 AC 83 ms
71,972 KB
testcase_18 AC 110 ms
74,140 KB
testcase_19 AC 52 ms
63,732 KB
testcase_20 AC 48 ms
61,700 KB
testcase_21 AC 145 ms
77,748 KB
testcase_22 AC 602 ms
81,016 KB
testcase_23 AC 144 ms
77,888 KB
testcase_24 AC 408 ms
77,192 KB
testcase_25 AC 89 ms
77,440 KB
testcase_26 AC 86 ms
76,968 KB
testcase_27 AC 81 ms
76,644 KB
testcase_28 AC 92 ms
76,868 KB
testcase_29 AC 79 ms
76,960 KB
testcase_30 AC 153 ms
77,260 KB
testcase_31 AC 428 ms
77,472 KB
testcase_32 AC 393 ms
77,484 KB
testcase_33 AC 388 ms
77,760 KB
testcase_34 AC 374 ms
77,648 KB
testcase_35 AC 389 ms
77,696 KB
testcase_36 AC 39 ms
52,732 KB
testcase_37 AC 78 ms
76,420 KB
testcase_38 AC 423 ms
77,420 KB
testcase_39 AC 163 ms
76,956 KB
testcase_40 AC 157 ms
77,172 KB
testcase_41 AC 158 ms
77,192 KB
testcase_42 AC 42 ms
59,308 KB
testcase_43 AC 42 ms
58,540 KB
testcase_44 AC 47 ms
61,244 KB
testcase_45 AC 45 ms
60,908 KB
testcase_46 AC 138 ms
76,536 KB
testcase_47 AC 143 ms
76,404 KB
testcase_48 AC 147 ms
76,580 KB
testcase_49 AC 127 ms
73,696 KB
testcase_50 AC 136 ms
75,656 KB
testcase_51 AC 137 ms
75,660 KB
testcase_52 AC 209 ms
75,772 KB
testcase_53 AC 208 ms
75,652 KB
testcase_54 AC 207 ms
75,672 KB
testcase_55 AC 188 ms
76,752 KB
testcase_56 AC 45 ms
59,880 KB
testcase_57 AC 44 ms
60,056 KB
testcase_58 AC 39 ms
52,200 KB
testcase_59 AC 84 ms
67,844 KB
testcase_60 AC 39 ms
52,124 KB
testcase_61 AC 89 ms
68,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dot(mtr0,mtr1):
  a,b=len(mtr0),len(mtr1[0])
  t=len(mtr0[0])
  if t!=len(mtr1):return None
  ret=[[0]*b for _ in range(a)]
  for i in range(a):
    for j in range(b):
      tmp=0
      for k in range(t):
        tmp+=mtr0[i][k]*mtr1[k][j]
      if tmp>0:tmp=1
      ret[i][j]=tmp
  return ret

def main0(n,m,t,ab):
  # ダブリング。O(n^2)
  g=[[0]*n for _ in range(n)]
  for a,b in ab:
    g[b][a]=1
  vc=[[0] for _ in range(n)]
  vc[0][0]=1
  while t:
    if t%2==1:vc=dot(g,vc)
    g=dot(g,g)
    t>>=1
  ans=0
  for i in range(n):
    if vc[i][0]==1:
      ans+=1
  return ans
  
if __name__=='__main__':
  n,m,t=map(int,input().split())
  ab=[list(map(int,input().split())) for _ in range(m)]
  ret0=main0(n,m,t,ab)
  print(ret0)
0