結果
問題 | No.1340 おーじ君をさがせ |
ユーザー | hir355 |
提出日時 | 2021-01-15 22:48:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 674 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 50,928 KB |
最終ジャッジ日時 | 2024-05-05 02:57:56 |
合計ジャッジ時間 | 24,150 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 446 ms
49,616 KB |
testcase_01 | AC | 448 ms
44,236 KB |
testcase_02 | AC | 453 ms
44,116 KB |
testcase_03 | AC | 437 ms
44,496 KB |
testcase_04 | AC | 439 ms
44,628 KB |
testcase_05 | AC | 441 ms
44,624 KB |
testcase_06 | AC | 446 ms
44,216 KB |
testcase_07 | AC | 448 ms
44,240 KB |
testcase_08 | AC | 454 ms
43,980 KB |
testcase_09 | AC | 455 ms
44,116 KB |
testcase_10 | AC | 477 ms
44,236 KB |
testcase_11 | AC | 1,191 ms
44,000 KB |
testcase_12 | AC | 685 ms
44,364 KB |
testcase_13 | AC | 1,012 ms
44,236 KB |
testcase_14 | AC | 1,579 ms
44,496 KB |
testcase_15 | AC | 1,481 ms
44,252 KB |
testcase_16 | AC | 612 ms
44,236 KB |
testcase_17 | WA | - |
testcase_18 | AC | 1,246 ms
44,372 KB |
testcase_19 | AC | 548 ms
44,500 KB |
testcase_20 | AC | 488 ms
44,244 KB |
testcase_21 | AC | 1,469 ms
44,124 KB |
testcase_22 | TLE | - |
testcase_23 | AC | 1,384 ms
44,240 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
ソースコード
import numpy as np INF = 10 ** 18 + 1 n, m, t = map(int, input().split()) mat = np.full((n, n), INF) for _ in range(m): a, b = map(int, input().split()) mat[a][b] = 1 res = np.full((n, n), INF) for i in range(n): res[i][i] = 0 while t > 0: if t & 1: tmp = np.full((n, n), INF) for i in range(n): for j in range(n): tmp[i, j] = (res[i] + mat[:, j]).min() res = tmp[:] tmp = np.full((n, n), INF) for i in range(n): for j in range(n): tmp[i, j] = (mat[i] + mat[:, j]).min() mat = tmp[:] t //= 2 ans = 0 for i in range(n): if res[0, i] < INF: ans += 1 print(ans)