結果

問題 No.1480 Many Complete Graphs
ユーザー H3PO4H3PO4
提出日時 2022-07-23 11:58:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,560 KB
最終ジャッジ日時 2024-07-04 23:29:23
合計ジャッジ時間 15,687 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 41 ms
52,608 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 42 ms
52,480 KB
testcase_08 AC 41 ms
52,864 KB
testcase_09 AC 54 ms
62,336 KB
testcase_10 AC 55 ms
62,336 KB
testcase_11 AC 47 ms
58,368 KB
testcase_12 AC 49 ms
60,160 KB
testcase_13 AC 88 ms
83,200 KB
testcase_14 AC 70 ms
73,216 KB
testcase_15 AC 207 ms
86,344 KB
testcase_16 AC 159 ms
84,352 KB
testcase_17 AC 160 ms
83,584 KB
testcase_18 AC 109 ms
80,512 KB
testcase_19 AC 168 ms
83,200 KB
testcase_20 AC 185 ms
83,700 KB
testcase_21 AC 97 ms
81,664 KB
testcase_22 AC 75 ms
72,448 KB
testcase_23 AC 106 ms
84,224 KB
testcase_24 AC 199 ms
86,656 KB
testcase_25 AC 266 ms
91,648 KB
testcase_26 AC 287 ms
94,336 KB
testcase_27 AC 202 ms
86,656 KB
testcase_28 AC 269 ms
102,784 KB
testcase_29 AC 285 ms
101,888 KB
testcase_30 AC 267 ms
101,504 KB
testcase_31 AC 276 ms
101,632 KB
testcase_32 AC 274 ms
102,528 KB
testcase_33 AC 273 ms
101,248 KB
testcase_34 AC 272 ms
102,528 KB
testcase_35 AC 267 ms
103,040 KB
testcase_36 AC 265 ms
102,400 KB
testcase_37 AC 267 ms
101,708 KB
testcase_38 AC 272 ms
103,560 KB
testcase_39 AC 266 ms
101,508 KB
testcase_40 AC 271 ms
101,632 KB
testcase_41 AC 264 ms
101,384 KB
testcase_42 AC 270 ms
102,784 KB
testcase_43 AC 275 ms
102,912 KB
testcase_44 AC 276 ms
101,504 KB
testcase_45 AC 284 ms
102,912 KB
testcase_46 AC 279 ms
101,888 KB
testcase_47 AC 389 ms
102,012 KB
testcase_48 AC 387 ms
101,868 KB
testcase_49 AC 380 ms
101,964 KB
testcase_50 AC 169 ms
97,664 KB
testcase_51 AC 401 ms
101,596 KB
testcase_52 AC 341 ms
101,248 KB
testcase_53 AC 331 ms
100,608 KB
testcase_54 AC 338 ms
100,864 KB
testcase_55 AC 338 ms
100,700 KB
testcase_56 AC 339 ms
100,864 KB
testcase_57 AC 164 ms
100,864 KB
testcase_58 AC 244 ms
99,328 KB
evil_aftercontest.txt AC 396 ms
129,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappop, heappush

input = sys.stdin.buffer.readline

N, M = map(int, input().split())
SIZE = N + 2 * M
G = [[] for _ in range(SIZE)]


def add_undirected_edge(u, v, c):
    G[u].append((v, c))
    G[v].append((u, c))


INF = 10 ** 18


def dijkstra(N, G, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist


for m in range(N, SIZE, 2):
    K, C, *S = map(int, input().split())
    add_undirected_edge(m, m + 1, 1)
    for s in S:
        t = m + s % 2
        add_undirected_edge(s - 1, t, C + s)
dist = dijkstra(SIZE, G, 0)[N - 1]
print(-1 if dist == INF else dist // 2)
0