結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー ヒッキープログラミングするスレ GitHub ガチヒッキープログラミングするスレ GitHub ガチ
提出日時 2016-12-18 08:16:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 984 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 84,972 KB
最終ジャッジ日時 2024-05-08 06:18:40
合計ジャッジ時間 6,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,820 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 34 ms
10,880 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 34 ms
10,880 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 34 ms
10,880 KB
testcase_13 AC 33 ms
10,880 KB
testcase_14 AC 52 ms
11,776 KB
testcase_15 AC 53 ms
11,648 KB
testcase_16 AC 53 ms
11,648 KB
testcase_17 AC 54 ms
11,648 KB
testcase_18 AC 54 ms
11,648 KB
testcase_19 AC 54 ms
11,648 KB
testcase_20 AC 55 ms
11,520 KB
testcase_21 AC 54 ms
11,648 KB
testcase_22 AC 53 ms
11,520 KB
testcase_23 AC 54 ms
11,520 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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