結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-18 10:47:05
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,107 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 76,444 KB
実行使用メモリ 201,820 KB
最終ジャッジ日時 2024-05-08 06:26:20
合計ジャッジ時間 14,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
83,808 KB
testcase_01 AC 88 ms
76,936 KB
testcase_02 AC 87 ms
76,452 KB
testcase_03 AC 132 ms
79,652 KB
testcase_04 AC 88 ms
76,452 KB
testcase_05 AC 133 ms
79,776 KB
testcase_06 AC 129 ms
79,664 KB
testcase_07 AC 134 ms
79,908 KB
testcase_08 AC 135 ms
80,556 KB
testcase_09 AC 142 ms
79,884 KB
testcase_10 AC 137 ms
80,428 KB
testcase_11 AC 146 ms
80,656 KB
testcase_12 AC 135 ms
79,788 KB
testcase_13 AC 150 ms
80,396 KB
testcase_14 AC 495 ms
83,496 KB
testcase_15 AC 544 ms
83,788 KB
testcase_16 AC 633 ms
84,456 KB
testcase_17 AC 594 ms
84,260 KB
testcase_18 AC 537 ms
83,964 KB
testcase_19 AC 576 ms
83,920 KB
testcase_20 AC 519 ms
82,940 KB
testcase_21 AC 509 ms
83,512 KB
testcase_22 AC 505 ms
84,060 KB
testcase_23 AC 510 ms
83,620 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
from heapq import heappush, heappop

from collections import namedtuple
edge = namedtuple('edge', 'to, cost')

n, m = map(int, raw_input().split())
G0 = [[] for i in range(n)]
rG = [[] for i in range(n)]

for _ in xrange(m):
    a, b, c = map(int, raw_input().split())
    G0[a].append(edge(b, c))
    rG[b].append(edge(a, c))

cost0 = [-1] * n # cost0[n]
cost0[0] = 0
que0 = []
heappush(que0, [0, 0])
while len(que0):
    c, v = heappop(que0)
    if c < cost0[v]:
        continue
    for e in G0[v]:
        if cost0[e.to] < cost0[v] + e.cost:
            cost0[e.to] = cost0[v] + e.cost
            heappush(que0, [cost0[e.to], e.to])

rcost = [-1] * n # rcost[n]
rcost[n-1] = 0
rq = []
heappush(rq, [0, n-1])
while len(rq):
    c, v = heappop(rq)
    if c < rcost[v]:
        continue
    for e in rG[v]:
        if rcost[e.to] < rcost[v] + e.cost:
            rcost[e.to] = rcost[v] + e.cost
            heappush(rq, [rcost[e.to], e.to])

days = cost0[n-1]
cnt = sum(cost0[i] != days - rcost[i] for i in xrange(n))
print '{} {}/{}'.format(days, cnt, n)
0