結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー h_nosonh_noson
提出日時 2017-06-16 00:02:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 117,660 KB
最終ジャッジ日時 2024-09-25 03:14:16
合計ジャッジ時間 8,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,716 KB
testcase_01 AC 40 ms
54,796 KB
testcase_02 AC 39 ms
54,856 KB
testcase_03 AC 45 ms
56,120 KB
testcase_04 AC 40 ms
55,292 KB
testcase_05 AC 46 ms
56,088 KB
testcase_06 AC 45 ms
57,380 KB
testcase_07 AC 45 ms
56,604 KB
testcase_08 AC 45 ms
56,800 KB
testcase_09 AC 46 ms
56,984 KB
testcase_10 AC 44 ms
56,092 KB
testcase_11 AC 45 ms
55,948 KB
testcase_12 AC 44 ms
56,264 KB
testcase_13 AC 46 ms
55,988 KB
testcase_14 AC 88 ms
77,528 KB
testcase_15 AC 85 ms
77,140 KB
testcase_16 AC 86 ms
77,228 KB
testcase_17 AC 85 ms
77,328 KB
testcase_18 AC 85 ms
77,324 KB
testcase_19 AC 86 ms
77,200 KB
testcase_20 AC 85 ms
77,408 KB
testcase_21 AC 86 ms
77,640 KB
testcase_22 AC 85 ms
77,068 KB
testcase_23 AC 85 ms
77,280 KB
testcase_24 AC 500 ms
117,372 KB
testcase_25 AC 495 ms
117,512 KB
testcase_26 AC 506 ms
117,156 KB
testcase_27 AC 501 ms
117,168 KB
testcase_28 AC 490 ms
117,660 KB
testcase_29 AC 505 ms
117,292 KB
testcase_30 AC 495 ms
117,236 KB
testcase_31 AC 503 ms
117,180 KB
testcase_32 AC 498 ms
117,084 KB
testcase_33 AC 503 ms
117,072 KB
testcase_34 AC 198 ms
104,860 KB
testcase_35 AC 61 ms
66,648 KB
testcase_36 AC 43 ms
54,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m = map(int,input().split(' '))
e = [[] for i in range(n)]
re = [[] for i in range(n)]
di = [0] * n
for i in range(m):
    a,b,c = map(int,input().split(' '))
    e[a].append((b,c))
    re[b].append((a,c))
    di[b] += 1
q = deque()
for i in range(n):
    if di[i] == 0:
        q.append(i)
t = [0] * n
while len(q):
    u = q.popleft()
    for v,c in e[u]:
        t[v] = max(t[v],t[u] + c)
        di[v] -= 1
        if di[v] == 0:
            q.append(v)
q = deque()
q.append(n-1)
cp = [False] * n
cp[n-1] = True
while len(q):
    u = q.popleft()
    for v,c in re[u]:
        if not cp[v] and t[v] + c == t[u]:
            cp[v] = True
            q.append(v)
print(t[-1],"%d/%d" % (n-sum(cp),n))
0