結果

問題 No.1340 おーじ君をさがせ
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-12 16:42:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 772 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-07-19 10:44:42
合計ジャッジ時間 26,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
60,672 KB
testcase_01 AC 52 ms
61,056 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 47 ms
58,368 KB
testcase_04 WA -
testcase_05 AC 42 ms
52,224 KB
testcase_06 WA -
testcase_07 AC 52 ms
60,928 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 41 ms
52,736 KB
testcase_10 AC 56 ms
63,488 KB
testcase_11 AC 194 ms
75,648 KB
testcase_12 WA -
testcase_13 AC 380 ms
77,696 KB
testcase_14 AC 375 ms
75,904 KB
testcase_15 AC 302 ms
76,032 KB
testcase_16 AC 115 ms
75,648 KB
testcase_17 AC 141 ms
75,648 KB
testcase_18 AC 219 ms
75,776 KB
testcase_19 AC 65 ms
65,792 KB
testcase_20 AC 64 ms
66,048 KB
testcase_21 AC 166 ms
77,696 KB
testcase_22 AC 670 ms
80,000 KB
testcase_23 AC 164 ms
77,696 KB
testcase_24 AC 456 ms
77,184 KB
testcase_25 AC 105 ms
77,184 KB
testcase_26 AC 99 ms
77,824 KB
testcase_27 AC 96 ms
76,928 KB
testcase_28 AC 109 ms
77,312 KB
testcase_29 AC 94 ms
76,928 KB
testcase_30 AC 171 ms
77,568 KB
testcase_31 AC 453 ms
78,080 KB
testcase_32 AC 476 ms
78,080 KB
testcase_33 AC 475 ms
78,336 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 42 ms
52,352 KB
testcase_37 AC 91 ms
77,312 KB
testcase_38 WA -
testcase_39 AC 1,503 ms
82,432 KB
testcase_40 AC 1,484 ms
82,048 KB
testcase_41 AC 1,485 ms
81,920 KB
testcase_42 WA -
testcase_43 AC 53 ms
60,800 KB
testcase_44 AC 56 ms
62,336 KB
testcase_45 AC 56 ms
62,080 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 1,201 ms
81,280 KB
testcase_49 AC 1,490 ms
80,640 KB
testcase_50 AC 1,489 ms
80,640 KB
testcase_51 AC 1,484 ms
80,384 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 51 ms
60,160 KB
testcase_57 AC 51 ms
60,032 KB
testcase_58 AC 42 ms
52,736 KB
testcase_59 WA -
testcase_60 AC 41 ms
52,352 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
    a,b=a-1,b-1
    g[b][a]=1
  vc=[[0] for _ in range(n)]
  vc[0][0]=1
  for i in range(63):
    if t&(1<<i):
      vc=dot(g,vc)
    g=dot(g,g)
  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