結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-18 18:57:08
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 845 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 251,592 KB
最終ジャッジ日時 2024-12-14 08:33:42
合計ジャッジ時間 38,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
82,216 KB
testcase_01 AC 77 ms
247,732 KB
testcase_02 AC 79 ms
82,476 KB
testcase_03 AC 94 ms
249,700 KB
testcase_04 AC 77 ms
82,352 KB
testcase_05 AC 87 ms
249,912 KB
testcase_06 AC 91 ms
85,020 KB
testcase_07 AC 89 ms
250,236 KB
testcase_08 AC 91 ms
84,780 KB
testcase_09 AC 95 ms
250,168 KB
testcase_10 AC 94 ms
84,932 KB
testcase_11 AC 92 ms
250,284 KB
testcase_12 AC 92 ms
84,800 KB
testcase_13 AC 92 ms
250,012 KB
testcase_14 AC 135 ms
85,692 KB
testcase_15 AC 135 ms
251,436 KB
testcase_16 AC 133 ms
86,216 KB
testcase_17 AC 134 ms
251,592 KB
testcase_18 AC 132 ms
86,232 KB
testcase_19 AC 133 ms
250,804 KB
testcase_20 AC 131 ms
86,120 KB
testcase_21 AC 129 ms
79,372 KB
testcase_22 AC 132 ms
78,768 KB
testcase_23 AC 130 ms
79,140 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 TLE -
testcase_35 AC 113 ms
78,228 KB
testcase_36 AC 84 ms
180,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python2
# -*- coding: utf-8 -*-
# †
n, m = map(int, raw_input().split())
G0 = []
rG = []

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

cost0 = [1] * n # cost0[n]
cost0[0] = 0
while True:
    update = False
    for e in G0:
        if cost0[e[0]] != 1 and cost0[e[1]] > cost0[e[0]] + e[2]:
            cost0[e[1]] = cost0[e[0]] + e[2]
            update = True
    if not update:
        break
days = -cost0[n-1]

rcost = [1] * n
rcost[n-1] = 0
while True:
    update = False
    for e in rG:
        if rcost[e[0]] != 1 and rcost[e[1]] > rcost[e[0]] + e[2]:
            rcost[e[1]] = rcost[e[0]] + e[2]
            update = True
    if not update:
        break

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