結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-07 17:57:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 1,328 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 121,804 KB
最終ジャッジ日時 2024-11-14 03:42:45
合計ジャッジ時間 7,471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,348 KB
testcase_01 AC 44 ms
55,368 KB
testcase_02 AC 41 ms
54,988 KB
testcase_03 AC 42 ms
55,140 KB
testcase_04 AC 40 ms
54,384 KB
testcase_05 AC 42 ms
56,496 KB
testcase_06 AC 42 ms
55,692 KB
testcase_07 AC 42 ms
54,444 KB
testcase_08 AC 42 ms
55,444 KB
testcase_09 AC 42 ms
56,504 KB
testcase_10 AC 42 ms
55,796 KB
testcase_11 AC 41 ms
55,116 KB
testcase_12 AC 42 ms
55,712 KB
testcase_13 AC 41 ms
55,036 KB
testcase_14 AC 71 ms
74,148 KB
testcase_15 AC 74 ms
74,920 KB
testcase_16 AC 73 ms
75,308 KB
testcase_17 AC 74 ms
75,180 KB
testcase_18 AC 71 ms
73,340 KB
testcase_19 AC 74 ms
75,436 KB
testcase_20 AC 74 ms
74,628 KB
testcase_21 AC 80 ms
77,660 KB
testcase_22 AC 80 ms
77,596 KB
testcase_23 AC 74 ms
74,988 KB
testcase_24 AC 382 ms
119,568 KB
testcase_25 AC 389 ms
120,904 KB
testcase_26 AC 377 ms
120,736 KB
testcase_27 AC 378 ms
119,608 KB
testcase_28 AC 379 ms
120,236 KB
testcase_29 AC 397 ms
121,804 KB
testcase_30 AC 379 ms
120,696 KB
testcase_31 AC 387 ms
121,640 KB
testcase_32 AC 391 ms
119,784 KB
testcase_33 AC 385 ms
121,672 KB
testcase_34 AC 142 ms
107,184 KB
testcase_35 AC 47 ms
57,352 KB
testcase_36 AC 40 ms
55,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def cycle_detectable_topological_sort(g, ind):
    V = len(g)
    order = []
    depth = [-1]*V
    for i in range(V):
        if not ind[i]:
            order.append(i)
            depth[i] = 0

    q = deque(order)
    while q:
        v = q.popleft()
        cur_depth = depth[v]
        for u in g[v]:
            ind[u] -= 1
            if not ind[u]:
                depth[u] = max(depth[u], cur_depth+1)
                q.append(u)
                order.append(u)
    if len(order) == V:
        return (order, depth)
    else:
        return (None, None)

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

INF = 10**18

n, m = map(int, input().split())
edge = [[] for i in range(n)]
rg = [[] for i in range(n)]
ind = [0]*n
for i in range(m):
    a, b, c = map(int, input().split())
    edge[a].append(b)
    rg[b].append((c, a))
    ind[b] += 1

order, _ = cycle_detectable_topological_sort(edge, ind)
dp1 = [-1]*n
dp1[0] = 0
for v in order:
    for c, u in rg[v]:
        dp1[v] = max(dp1[v], dp1[u]+c)
dp2 = [INF]*n
dp2[n-1] = dp1[n-1]
for v in reversed(order):
    for c, u in rg[v]:
        dp2[u] = min(dp2[u], dp2[v]-c)
#print(dp1)
#print(dp2)
ans = 0
for v in range(n):
    if dp1[v] != dp2[v]:
        ans += 1
print(dp1[v], str(ans)+'/'+str(n))
0