結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 48 ms
53,888 KB
testcase_06 AC 45 ms
54,388 KB
testcase_07 AC 47 ms
53,632 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 45 ms
53,888 KB
testcase_10 AC 45 ms
54,144 KB
testcase_11 AC 44 ms
53,888 KB
testcase_12 AC 43 ms
54,016 KB
testcase_13 AC 47 ms
53,888 KB
testcase_14 AC 99 ms
77,184 KB
testcase_15 AC 102 ms
77,184 KB
testcase_16 AC 98 ms
77,456 KB
testcase_17 AC 103 ms
76,928 KB
testcase_18 AC 101 ms
77,020 KB
testcase_19 AC 99 ms
77,052 KB
testcase_20 AC 108 ms
77,184 KB
testcase_21 AC 112 ms
77,056 KB
testcase_22 AC 106 ms
76,928 KB
testcase_23 AC 109 ms
77,052 KB
testcase_24 AC 690 ms
138,296 KB
testcase_25 AC 692 ms
138,004 KB
testcase_26 AC 685 ms
138,760 KB
testcase_27 AC 678 ms
138,212 KB
testcase_28 AC 671 ms
138,024 KB
testcase_29 AC 683 ms
138,132 KB
testcase_30 AC 696 ms
139,232 KB
testcase_31 AC 734 ms
138,792 KB
testcase_32 AC 711 ms
138,916 KB
testcase_33 AC 704 ms
139,064 KB
testcase_34 AC 234 ms
108,196 KB
testcase_35 AC 58 ms
65,536 KB
testcase_36 AC 39 ms
52,992 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