結果
問題 | No.468 役に立つ競技プログラミング実践編 |
ユーザー | H3PO4 |
提出日時 | 2020-11-24 21:47:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 877 bytes |
コンパイル時間 | 582 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 121,640 KB |
最終ジャッジ日時 | 2024-07-23 18:49:57 |
合計ジャッジ時間 | 25,604 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
11,264 KB |
testcase_01 | AC | 33 ms
11,392 KB |
testcase_02 | AC | 34 ms
11,392 KB |
testcase_03 | AC | 34 ms
11,264 KB |
testcase_04 | AC | 33 ms
11,392 KB |
testcase_05 | AC | 36 ms
11,264 KB |
testcase_06 | AC | 35 ms
11,264 KB |
testcase_07 | AC | 35 ms
11,264 KB |
testcase_08 | AC | 34 ms
11,392 KB |
testcase_09 | AC | 34 ms
11,392 KB |
testcase_10 | AC | 35 ms
11,264 KB |
testcase_11 | AC | 35 ms
11,392 KB |
testcase_12 | AC | 34 ms
11,264 KB |
testcase_13 | AC | 34 ms
11,392 KB |
testcase_14 | AC | 48 ms
12,288 KB |
testcase_15 | AC | 48 ms
12,288 KB |
testcase_16 | AC | 48 ms
12,288 KB |
testcase_17 | AC | 49 ms
12,288 KB |
testcase_18 | AC | 49 ms
12,288 KB |
testcase_19 | AC | 50 ms
12,288 KB |
testcase_20 | AC | 48 ms
12,416 KB |
testcase_21 | AC | 48 ms
12,288 KB |
testcase_22 | AC | 48 ms
12,416 KB |
testcase_23 | AC | 48 ms
12,288 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | AC | 1,065 ms
100,496 KB |
testcase_35 | AC | 42 ms
11,904 KB |
testcase_36 | AC | 34 ms
11,392 KB |
ソースコード
import sys import graphlib input = sys.stdin.buffer.readline def solve(): N, M = map(int, input().split()) # Python 3.9 の新機能 ts = graphlib.TopologicalSorter() parents, children = [[] for _ in range(N)], [[] for _ in range(N)] for _ in range(M): a, b, c = map(int, input().split()) # to, fromの順なので注意 ts.add(b, a) parents[b].append((a, c)) children[a].append((b, c)) tps = tuple(ts.static_order()) earliest, latest = [0] * N, [0] * N for x in tps: earliest[x] = max((earliest[p] + v for p, v in parents[x]), default=0) for x in reversed(tps): latest[x] = max((latest[c] + v for c, v in children[x]), default=0) T = earliest[N - 1] P = sum(earliest[x] + latest[x] != T for x in range(N)) print(f'{T} {P}/{N}') if __name__ == '__main__': solve()