結果
問題 | No.468 役に立つ競技プログラミング実践編 |
ユーザー | H3PO4 |
提出日時 | 2024-07-25 14:48:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 759 ms / 2,000 ms |
コード長 | 1,092 bytes |
コンパイル時間 | 251 ms |
コンパイル使用メモリ | 82,772 KB |
実行使用メモリ | 172,264 KB |
最終ジャッジ日時 | 2024-07-25 14:49:04 |
合計ジャッジ時間 | 12,381 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,632 KB |
testcase_01 | AC | 42 ms
54,016 KB |
testcase_02 | AC | 41 ms
53,760 KB |
testcase_03 | AC | 44 ms
55,168 KB |
testcase_04 | AC | 42 ms
54,272 KB |
testcase_05 | AC | 42 ms
55,040 KB |
testcase_06 | AC | 44 ms
55,168 KB |
testcase_07 | AC | 45 ms
55,040 KB |
testcase_08 | AC | 45 ms
54,912 KB |
testcase_09 | AC | 46 ms
54,656 KB |
testcase_10 | AC | 48 ms
54,784 KB |
testcase_11 | AC | 48 ms
54,784 KB |
testcase_12 | AC | 46 ms
54,656 KB |
testcase_13 | AC | 44 ms
55,296 KB |
testcase_14 | AC | 103 ms
77,684 KB |
testcase_15 | AC | 91 ms
78,080 KB |
testcase_16 | AC | 97 ms
77,960 KB |
testcase_17 | AC | 93 ms
77,952 KB |
testcase_18 | AC | 92 ms
77,568 KB |
testcase_19 | AC | 94 ms
77,688 KB |
testcase_20 | AC | 94 ms
77,580 KB |
testcase_21 | AC | 96 ms
77,712 KB |
testcase_22 | AC | 94 ms
77,568 KB |
testcase_23 | AC | 107 ms
77,824 KB |
testcase_24 | AC | 733 ms
170,112 KB |
testcase_25 | AC | 751 ms
170,228 KB |
testcase_26 | AC | 727 ms
172,264 KB |
testcase_27 | AC | 738 ms
167,336 KB |
testcase_28 | AC | 720 ms
161,176 KB |
testcase_29 | AC | 705 ms
162,300 KB |
testcase_30 | AC | 706 ms
170,716 KB |
testcase_31 | AC | 759 ms
164,464 KB |
testcase_32 | AC | 714 ms
164,316 KB |
testcase_33 | AC | 726 ms
167,496 KB |
testcase_34 | AC | 278 ms
145,964 KB |
testcase_35 | AC | 57 ms
65,152 KB |
testcase_36 | AC | 44 ms
54,784 KB |
ソースコード
import sys from collections import deque, defaultdict input = sys.stdin.buffer.readline def topological_sort(N, edges): outs = defaultdict(list) ins = defaultdict(int) for v1, v2, in edges: outs[v1].append(v2) ins[v2] += 1 q = deque(v1 for v1 in range(N) if ins[v1] == 0) while q: v1 = q.popleft() yield v1 for v2 in outs[v1]: ins[v2] -= 1 if ins[v2] == 0: q.append(v2) N, M = map(int, input().split()) edges = [] parents, children = [[] for _ in range(N)], [[] for _ in range(N)] for _ in range(M): a, b, c = map(int, input().split()) edges.append((a, b)) parents[b].append((a, c)) children[a].append((b, c)) tps = tuple(topological_sort(N, edges)) 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}')