結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-12-18 18:57:08
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 845 bytes
コンパイル時間 729 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 177,624 KB
最終ジャッジ日時 2024-05-08 06:45:05
合計ジャッジ時間 7,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
80,896 KB
testcase_01 AC 83 ms
75,520 KB
testcase_02 AC 84 ms
75,776 KB
testcase_03 AC 94 ms
78,320 KB
testcase_04 AC 85 ms
75,392 KB
testcase_05 AC 93 ms
78,336 KB
testcase_06 AC 95 ms
78,080 KB
testcase_07 AC 95 ms
78,592 KB
testcase_08 AC 96 ms
78,080 KB
testcase_09 AC 98 ms
77,952 KB
testcase_10 AC 94 ms
78,416 KB
testcase_11 AC 93 ms
77,952 KB
testcase_12 AC 93 ms
78,080 KB
testcase_13 AC 94 ms
78,208 KB
testcase_14 AC 152 ms
78,720 KB
testcase_15 AC 138 ms
79,264 KB
testcase_16 AC 139 ms
79,488 KB
testcase_17 AC 137 ms
79,616 KB
testcase_18 AC 135 ms
79,488 KB
testcase_19 AC 132 ms
79,488 KB
testcase_20 AC 129 ms
79,616 KB
testcase_21 AC 132 ms
79,264 KB
testcase_22 AC 130 ms
78,848 KB
testcase_23 AC 134 ms
79,516 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 -*-
# †
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