結果

問題 No.1812 Uribo Road
ユーザー tamatotamato
提出日時 2022-01-14 22:02:48
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,610 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 1,536,200 KB
最終ジャッジ日時 2024-11-20 10:17:23
合計ジャッジ時間 56,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,436 KB
testcase_01 MLE -
testcase_02 AC 43 ms
60,288 KB
testcase_03 MLE -
testcase_04 AC 41 ms
53,052 KB
testcase_05 AC 42 ms
53,104 KB
testcase_06 AC 43 ms
53,996 KB
testcase_07 AC 58 ms
66,044 KB
testcase_08 AC 422 ms
94,144 KB
testcase_09 AC 545 ms
107,412 KB
testcase_10 AC 315 ms
91,784 KB
testcase_11 AC 213 ms
82,936 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 4,568 ms
342,044 KB
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 AC 1,033 ms
136,824 KB
testcase_24 AC 77 ms
73,968 KB
testcase_25 AC 181 ms
80,512 KB
testcase_26 AC 184 ms
84,848 KB
testcase_27 TLE -
testcase_28 AC 328 ms
88,096 KB
testcase_29 AC 44 ms
53,684 KB
testcase_30 AC 605 ms
175,868 KB
testcase_31 MLE -
testcase_32 AC 296 ms
92,140 KB
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline
    import heapq

    def dijkstra(adj, start):
        # adj: [[to, cost] * vertices], 0th index must be empty
        inf = 1 << 60
        dist = [inf] * len(adj)
        dist[start] = 0
        q = []
        heapq.heappush(q, (0, start))
        while q:
            min_dist, v_from = heapq.heappop(q)
            if min_dist > dist[v_from]:
                continue
            v_tos = adj[v_from]
            for v_to, cost in v_tos:
                if min_dist + cost < dist[v_to]:
                    dist[v_to] = min_dist + cost
                    heapq.heappush(q, (dist[v_to], v_to))
        return dist

    N, M, K = map(int, input().split())
    R = list(map(int, input().split()))

    idx = {r: i for i, r in enumerate(R)}
    adj = [[] for _ in range(N * (1 << K) + 1)]
    for i in range(1, M+1):
        a, b, c = map(int, input().split())
        if i not in idx:
            for state in range(1 << K):
                aa = a + state * N
                bb = b + state * N
                adj[aa].append((bb, c))
                adj[bb].append((aa, c))
        else:
            j = idx[i]
            for state in range(1 << K):
                aa = a + state * N
                bb = b + state * N
                state_new = state | (1 << j)
                aaa = a + state_new * N
                bbb = b + state_new * N
                adj[aa].append((bbb, c))
                adj[bb].append((aaa, c))

    dist = dijkstra(adj, 1)
    print(dist[-1])


if __name__ == '__main__':
    main()
0