結果

問題 No.1340 おーじ君をさがせ
ユーザー wolgnikwolgnik
提出日時 2021-01-15 22:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,241 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-05-05 21:49:47
合計ジャッジ時間 20,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 58 ms
64,256 KB
testcase_11 AC 276 ms
77,312 KB
testcase_12 AC 107 ms
70,912 KB
testcase_13 AC 235 ms
77,184 KB
testcase_14 AC 508 ms
78,336 KB
testcase_15 AC 448 ms
77,824 KB
testcase_16 AC 87 ms
69,504 KB
testcase_17 AC 187 ms
77,056 KB
testcase_18 AC 291 ms
77,568 KB
testcase_19 AC 73 ms
67,328 KB
testcase_20 AC 58 ms
65,408 KB
testcase_21 AC 290 ms
78,080 KB
testcase_22 AC 666 ms
80,256 KB
testcase_23 AC 299 ms
78,336 KB
testcase_24 AC 1,239 ms
81,024 KB
testcase_25 AC 97 ms
76,160 KB
testcase_26 AC 81 ms
73,216 KB
testcase_27 AC 78 ms
72,192 KB
testcase_28 AC 102 ms
76,672 KB
testcase_29 AC 60 ms
67,712 KB
testcase_30 AC 315 ms
77,952 KB
testcase_31 AC 1,241 ms
81,664 KB
testcase_32 AC 1,122 ms
81,024 KB
testcase_33 AC 1,150 ms
80,768 KB
testcase_34 AC 995 ms
81,152 KB
testcase_35 AC 1,217 ms
81,536 KB
testcase_36 AC 38 ms
51,968 KB
testcase_37 AC 48 ms
63,744 KB
testcase_38 AC 1,226 ms
81,536 KB
testcase_39 AC 337 ms
77,440 KB
testcase_40 AC 390 ms
77,184 KB
testcase_41 AC 345 ms
77,440 KB
testcase_42 AC 37 ms
52,480 KB
testcase_43 AC 41 ms
58,752 KB
testcase_44 AC 49 ms
62,720 KB
testcase_45 AC 46 ms
61,184 KB
testcase_46 AC 266 ms
77,312 KB
testcase_47 AC 283 ms
77,184 KB
testcase_48 AC 312 ms
77,696 KB
testcase_49 AC 303 ms
77,440 KB
testcase_50 AC 313 ms
77,312 KB
testcase_51 AC 304 ms
77,312 KB
testcase_52 AC 547 ms
78,208 KB
testcase_53 AC 545 ms
78,464 KB
testcase_54 AC 569 ms
78,208 KB
testcase_55 AC 425 ms
77,696 KB
testcase_56 AC 44 ms
60,288 KB
testcase_57 AC 44 ms
60,160 KB
testcase_58 AC 36 ms
52,352 KB
testcase_59 AC 192 ms
72,576 KB
testcase_60 AC 37 ms
52,096 KB
testcase_61 AC 197 ms
72,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M, T = map(int, input().split())

bn = list(map(int, bin(T)[2: ]))
ln = len(bn)

d = [[[0] * N for _ in range(N)] for _ in range(ln)]
for _ in range(M):
  u, v = map(int, input().split())
  d[0][u][v] = 1

for t in range(ln - 1):
  for k in range(N):
    for i in range(N):
      for j in range(N):
        d[t + 1][i][j] |= d[t][i][k] & d[t][k][j]

dt = [[0] * N for _ in range(N)]
dt[0][0] = 1
for tt in range(ln):
  t = ln - tt - 1
  if bn[tt] == 0: continue
  tdt = [[0] * N for _ in range(N)]
  for k in range(N):
    for i in range(N):
      for j in range(N):
        tdt[i][j] |= dt[i][k] & d[t][k][j]
  dt = tdt

print(sum(dt[0]))
0