結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー rpy3cpprpy3cpp
提出日時 2017-04-05 01:19:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,052 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 102,332 KB
最終ジャッジ日時 2024-07-08 09:12:30
合計ジャッジ時間 25,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import heapq

def read_data():
    N, M = map(int, input().split())
    Es = [[] for v in range(N)]
    EEs = [[] for v in range(N)]
    for m in range(M):
        A, B, C = map(int, input().split())
        Es[A].append((B, C))
        EEs[B].append((A, C))
    return N, M, Es, EEs


def solve(N, M, Es, EEs):
    T1s = getTs(N, M, Es, 0)
    T2s = getTs(N, M, EEs, N - 1)
    T = T1s[N - 1]
    T2s = [T - t for t in T2s]
    P = sum(1 for t1, t2 in zip(T1s, T2s) if t1 < t2)
    return '{} {}/{}'.format(T, P, N)


def getTs(N, M, Es, start):
    # n_ins[p]: p に入る辺の本数。
    n_ins = [0] * N
    for pairs in Es:
        for d, c in pairs:
            n_ins[d] += 1
    n_ins[start] = 1

    # Ts: 最早結合点時刻
    Ts = [-1] * N
    pq = [(0, start)]
    while pq:
        t, p = heapq.heappop(pq)
        n_ins[p] -= 1
        if n_ins[p]:
            continue
        Ts[p] = t
        for v, c in Es[p]:
            heapq.heappush(pq, (t + c, v))
    return Ts
    

N, M, Es, EEs = read_data()
print(solve(N, M, Es, EEs))
0