結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー ヒッキープログラミングするスレ GitHub ガチヒッキープログラミングするスレ GitHub ガチ
提出日時 2016-12-18 08:16:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 778 ms / 2,000 ms
コード長 984 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 139,224 KB
最終ジャッジ日時 2024-05-08 06:18:55
合計ジャッジ時間 10,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,820 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 38 ms
53,080 KB
testcase_03 AC 43 ms
55,500 KB
testcase_04 AC 37 ms
52,904 KB
testcase_05 AC 42 ms
55,416 KB
testcase_06 AC 42 ms
55,076 KB
testcase_07 AC 41 ms
55,200 KB
testcase_08 AC 41 ms
54,304 KB
testcase_09 AC 46 ms
54,196 KB
testcase_10 AC 42 ms
55,212 KB
testcase_11 AC 42 ms
54,328 KB
testcase_12 AC 42 ms
54,876 KB
testcase_13 AC 43 ms
54,616 KB
testcase_14 AC 95 ms
77,264 KB
testcase_15 AC 95 ms
77,012 KB
testcase_16 AC 94 ms
77,312 KB
testcase_17 AC 94 ms
77,124 KB
testcase_18 AC 95 ms
77,044 KB
testcase_19 AC 93 ms
77,184 KB
testcase_20 AC 92 ms
77,184 KB
testcase_21 AC 97 ms
77,184 KB
testcase_22 AC 92 ms
77,184 KB
testcase_23 AC 94 ms
76,928 KB
testcase_24 AC 686 ms
138,160 KB
testcase_25 AC 693 ms
138,072 KB
testcase_26 AC 778 ms
139,120 KB
testcase_27 AC 680 ms
138,140 KB
testcase_28 AC 754 ms
138,024 KB
testcase_29 AC 712 ms
138,724 KB
testcase_30 AC 737 ms
139,224 KB
testcase_31 AC 732 ms
139,040 KB
testcase_32 AC 696 ms
138,912 KB
testcase_33 AC 713 ms
138,940 KB
testcase_34 AC 232 ms
108,092 KB
testcase_35 AC 58 ms
65,536 KB
testcase_36 AC 41 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

r = [[] for _ in range(n)]
s = [[] for _ in range(n)]
x1 = [0] * n
c1 = [0] * n
x2 = [0] * n
c2 = [16000000] * n
cost = {}

def ky(a, b):
    return a * 100000 + b

for _ in range(m):
    a, b, c = map(int, input().split())
    r[a].append(b)
    s[b].append(a)
    cost[ky(a, b)] = c

tmp1 = [0]
while len(tmp1) > 0:
    tmp2 = []
    for a in tmp1:
        ca = c1[a]
        for b in r[a]:
            c1[b] = max(c1[b], ca + cost[ky(a, b)])
            x1[b] += 1
            if x1[b] == len(s[b]):
                tmp2.append(b)
    tmp1 = tmp2

c2[n - 1] = c1[n - 1]
tmp1 = [n - 1]
while len(tmp1) > 0:
    tmp2 = []
    for b in tmp1:
        cb = c2[b]
        for a in s[b]:
            c2[a] = min(c2[a], cb - cost[ky(a, b)])
            x2[a] += 1
            if x2[a] == len(r[a]):
                tmp2.append(a)
    tmp1 = tmp2

p = 0
for i in range(n):
    if c1[i] != c2[i]:
        p += 1

print('{0} {1}/{2}'.format(c1[n - 1], p, n))
0