結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,648 KB
testcase_01 AC 39 ms
52,392 KB
testcase_02 AC 38 ms
53,160 KB
testcase_03 AC 43 ms
55,892 KB
testcase_04 AC 37 ms
53,468 KB
testcase_05 AC 41 ms
54,808 KB
testcase_06 AC 42 ms
54,104 KB
testcase_07 AC 42 ms
55,468 KB
testcase_08 AC 43 ms
54,448 KB
testcase_09 AC 41 ms
54,072 KB
testcase_10 AC 46 ms
54,216 KB
testcase_11 AC 44 ms
53,936 KB
testcase_12 AC 42 ms
55,052 KB
testcase_13 AC 43 ms
54,532 KB
testcase_14 AC 94 ms
77,576 KB
testcase_15 AC 92 ms
77,380 KB
testcase_16 AC 94 ms
77,420 KB
testcase_17 AC 95 ms
77,532 KB
testcase_18 AC 94 ms
77,296 KB
testcase_19 AC 92 ms
77,652 KB
testcase_20 AC 93 ms
77,420 KB
testcase_21 AC 94 ms
77,540 KB
testcase_22 AC 92 ms
77,604 KB
testcase_23 AC 92 ms
77,872 KB
testcase_24 AC 818 ms
165,388 KB
testcase_25 AC 844 ms
165,384 KB
testcase_26 AC 867 ms
165,568 KB
testcase_27 AC 831 ms
165,060 KB
testcase_28 AC 802 ms
164,924 KB
testcase_29 AC 822 ms
165,332 KB
testcase_30 AC 842 ms
165,580 KB
testcase_31 AC 863 ms
165,892 KB
testcase_32 AC 836 ms
165,692 KB
testcase_33 AC 875 ms
165,260 KB
testcase_34 AC 271 ms
131,384 KB
testcase_35 AC 59 ms
65,576 KB
testcase_36 AC 40 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

r = [[] for _ in range(n)]
s = [[] for _ in range(n)]
t1 = [[0, 0] for _ in range(n)]
t2 = [[0, 16000000] for _ in range(n)]

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

tmp1 = set()
tmp1.add(0)
while len(tmp1) > 0:
    tmp2 = set()
    for a in tmp1:
        for b, c in r[a]:
            t1[b][1] = max(t1[b][1], t1[a][1] + c)
            t1[b][0] += 1
            if t1[b][0] == len(s[b]):
                tmp2.add(b)
    tmp1 = tmp2

t2[n - 1][1] = t1[n - 1][1]
tmp1 = set()
tmp1.add(n - 1)
while len(tmp1) > 0:
    tmp2 = set()
    for b in tmp1:
        for a, c in s[b]:
            t2[a][1] = min(t2[a][1], t2[b][1] - c)
            t2[a][0] += 1
            if t2[a][0] == len(r[a]):
                tmp2.add(a)
    tmp1 = tmp2

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

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