結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー rlangevinrlangevin
提出日時 2023-12-20 12:25:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 131,088 KB
最終ジャッジ日時 2024-09-27 09:48:01
合計ジャッジ時間 10,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,244 KB
testcase_01 AC 41 ms
54,360 KB
testcase_02 AC 42 ms
54,516 KB
testcase_03 AC 43 ms
55,820 KB
testcase_04 AC 42 ms
54,700 KB
testcase_05 AC 43 ms
56,828 KB
testcase_06 AC 44 ms
55,004 KB
testcase_07 AC 43 ms
55,056 KB
testcase_08 AC 43 ms
55,744 KB
testcase_09 AC 43 ms
56,316 KB
testcase_10 AC 43 ms
55,364 KB
testcase_11 AC 44 ms
56,084 KB
testcase_12 AC 44 ms
55,556 KB
testcase_13 AC 43 ms
54,816 KB
testcase_14 AC 84 ms
77,504 KB
testcase_15 AC 84 ms
77,380 KB
testcase_16 AC 86 ms
77,644 KB
testcase_17 AC 86 ms
77,372 KB
testcase_18 AC 83 ms
77,260 KB
testcase_19 AC 85 ms
77,184 KB
testcase_20 AC 74 ms
74,824 KB
testcase_21 AC 86 ms
77,400 KB
testcase_22 AC 82 ms
77,588 KB
testcase_23 AC 87 ms
77,260 KB
testcase_24 AC 540 ms
129,796 KB
testcase_25 AC 542 ms
131,088 KB
testcase_26 AC 555 ms
128,932 KB
testcase_27 AC 542 ms
130,052 KB
testcase_28 AC 550 ms
130,304 KB
testcase_29 AC 561 ms
128,532 KB
testcase_30 AC 528 ms
130,308 KB
testcase_31 AC 530 ms
129,232 KB
testcase_32 AC 552 ms
130,456 KB
testcase_33 AC 549 ms
130,668 KB
testcase_34 AC 184 ms
116,204 KB
testcase_35 AC 49 ms
59,052 KB
testcase_36 AC 42 ms
55,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import *
def topsort(G):
    Q = deque()
    N = len(G)
    count = [0] * N

    for u in range(N):
        for v in G[u]:
            count[v] += 1

    for u in range(N):
        if count[u] == 0:
            Q.append(u)
    anslst = deque()
    while Q:
        u = Q.pop()
        anslst.append(u)
        for v in G[u]:
            count[v] -= 1
            if count[v] == 0:
                Q.append(v)
    return list(anslst)


N, M = map(int, input().split())
G = [[] for i in range(N)]
GG = [[] for i in range(N)]
Gr = [[] for i in range(N)]
for i in range(M):
    A, B, C = map(int, input().split())
    G[A].append((B, C))
    Gr[B].append((A, C))
    GG[A].append(B)

A = topsort(GG)
inf = 10 ** 18
dp, dpr = [-inf] * N, [inf] * N
dp[0] = 0
for a in A:
    for u, c in G[a]:
        dp[u] = max(dp[u], dp[a] + c) 

A.reverse()
dpr[-1] = dp[-1]
for a in A:
    for u, c in Gr[a]:
        dpr[u] = min(dpr[u], dpr[a] - c) 

cnt = 0
for i in range(N):
    cnt += int(dp[i]!=dpr[i])

ans = str(cnt) + "/" + str(N)
print(dp[-1], ans)
0