結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー maspymaspy
提出日時 2020-03-19 23:08:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,485 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 143,064 KB
最終ジャッジ日時 2024-05-08 03:34:08
合計ジャッジ時間 19,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 41 ms
12,160 KB
testcase_15 AC 42 ms
12,160 KB
testcase_16 AC 41 ms
12,160 KB
testcase_17 AC 41 ms
12,160 KB
testcase_18 AC 41 ms
12,160 KB
testcase_19 AC 42 ms
12,160 KB
testcase_20 AC 42 ms
12,032 KB
testcase_21 AC 41 ms
12,160 KB
testcase_22 AC 41 ms
12,032 KB
testcase_23 AC 41 ms
12,160 KB
testcase_24 AC 1,440 ms
142,548 KB
testcase_25 AC 1,461 ms
142,908 KB
testcase_26 AC 1,485 ms
143,000 KB
testcase_27 AC 1,445 ms
142,920 KB
testcase_28 AC 1,432 ms
142,800 KB
testcase_29 AC 1,446 ms
143,064 KB
testcase_30 AC 1,454 ms
142,868 KB
testcase_31 AC 1,450 ms
142,736 KB
testcase_32 AC 1,467 ms
142,556 KB
testcase_33 AC 1,463 ms
142,492 KB
testcase_34 AC 478 ms
67,008 KB
testcase_35 AC 35 ms
11,392 KB
testcase_36 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N, M = map(int, readline().split())
m = map(int, read().split())
ABC = zip(m, m, m)

graph = [[] for _ in range(N)]
graph_rev = [[] for _ in range(N)]
in_deg = [0] * N
for a, b, c in ABC:
    graph[a].append((b, c))
    graph_rev[b].append((a, c))
    in_deg[b] += 1

deg_0 = [i for i, x in enumerate(in_deg) if not x]
order = []
while deg_0:
    v = deg_0.pop()
    order.append(v)
    for w, _ in graph[v]:
        in_deg[w] -= 1
        if in_deg[w] == 0:
            deg_0.append(w)

dp1 = [0] * N
for v in order:
    dv = dp1[v]
    for w, c in graph[v]:
        dw = dv + c
        if dp1[w] < dw:
            dp1[w] = dw
dp2 = [0] * N
for v in order[::-1]:
    dv = dp2[v]
    for w, c in graph_rev[v]:
        dw = dv + c
        if dp2[w] < dw:
            dp2[w] = dw

T = dp1[-1]
dp2 = [T - x for x in dp2]
P = sum(x < y for x, y in zip(dp1, dp2))
print(f'{T} {P}/{N}')
0