結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-18 10:49:37
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,017 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 77,180 KB
実行使用メモリ 249,736 KB
最終ジャッジ日時 2024-12-14 08:04:21
合計ジャッジ時間 39,063 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
82,240 KB
testcase_01 AC 78 ms
82,656 KB
testcase_02 AC 77 ms
82,728 KB
testcase_03 AC 119 ms
247,592 KB
testcase_04 AC 76 ms
82,348 KB
testcase_05 AC 115 ms
246,604 KB
testcase_06 AC 109 ms
84,916 KB
testcase_07 AC 111 ms
246,856 KB
testcase_08 AC 112 ms
85,724 KB
testcase_09 AC 117 ms
243,496 KB
testcase_10 AC 123 ms
85,680 KB
testcase_11 AC 121 ms
245,776 KB
testcase_12 AC 121 ms
86,184 KB
testcase_13 AC 125 ms
247,312 KB
testcase_14 AC 428 ms
88,200 KB
testcase_15 AC 492 ms
249,736 KB
testcase_16 AC 494 ms
88,348 KB
testcase_17 AC 461 ms
246,972 KB
testcase_18 AC 439 ms
88,028 KB
testcase_19 AC 477 ms
81,720 KB
testcase_20 AC 471 ms
81,560 KB
testcase_21 AC 465 ms
81,668 KB
testcase_22 AC 463 ms
82,284 KB
testcase_23 AC 466 ms
81,644 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 238 ms
106,800 KB
testcase_35 AC 98 ms
78,500 KB
testcase_36 AC 77 ms
243,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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((b, c))
    rG[b].append((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[0]] < cost0[v] + e[1]:
            cost0[e[0]] = cost0[v] + e[1]
            heappush(que0, [cost0[e[0]], e[0]])

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[0]] < rcost[v] + e[1]:
            rcost[e[0]] = rcost[v] + e[1]
            heappush(rq, [rcost[e[0]], e[0]])

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