結果

問題 No.1480 Many Complete Graphs
ユーザー convexineqconvexineq
提出日時 2021-04-16 21:24:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,016 KB
最終ジャッジ日時 2024-07-03 04:13:23
合計ジャッジ時間 16,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 44 ms
52,480 KB
testcase_02 AC 43 ms
52,864 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 44 ms
52,480 KB
testcase_06 AC 43 ms
52,224 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 44 ms
52,736 KB
testcase_09 AC 61 ms
63,488 KB
testcase_10 AC 61 ms
63,360 KB
testcase_11 AC 49 ms
58,496 KB
testcase_12 AC 52 ms
59,776 KB
testcase_13 AC 104 ms
82,560 KB
testcase_14 AC 98 ms
80,768 KB
testcase_15 AC 220 ms
86,312 KB
testcase_16 AC 182 ms
84,056 KB
testcase_17 AC 176 ms
83,456 KB
testcase_18 AC 119 ms
81,152 KB
testcase_19 AC 184 ms
83,200 KB
testcase_20 AC 214 ms
83,972 KB
testcase_21 AC 108 ms
81,152 KB
testcase_22 AC 99 ms
80,000 KB
testcase_23 AC 148 ms
90,112 KB
testcase_24 AC 228 ms
86,016 KB
testcase_25 AC 299 ms
91,716 KB
testcase_26 AC 311 ms
93,044 KB
testcase_27 AC 229 ms
86,912 KB
testcase_28 AC 317 ms
102,756 KB
testcase_29 AC 330 ms
103,004 KB
testcase_30 AC 312 ms
100,568 KB
testcase_31 AC 317 ms
101,808 KB
testcase_32 AC 322 ms
102,368 KB
testcase_33 AC 320 ms
101,476 KB
testcase_34 AC 316 ms
103,016 KB
testcase_35 AC 313 ms
101,608 KB
testcase_36 AC 308 ms
101,600 KB
testcase_37 AC 313 ms
101,468 KB
testcase_38 AC 308 ms
101,088 KB
testcase_39 AC 309 ms
101,352 KB
testcase_40 AC 312 ms
101,204 KB
testcase_41 AC 310 ms
100,836 KB
testcase_42 AC 319 ms
102,848 KB
testcase_43 AC 316 ms
102,116 KB
testcase_44 AC 320 ms
101,732 KB
testcase_45 AC 323 ms
102,876 KB
testcase_46 AC 321 ms
101,092 KB
testcase_47 AC 457 ms
102,016 KB
testcase_48 AC 452 ms
102,252 KB
testcase_49 AC 465 ms
102,320 KB
testcase_50 AC 219 ms
98,944 KB
testcase_51 AC 455 ms
101,504 KB
testcase_52 AC 399 ms
101,468 KB
testcase_53 AC 387 ms
101,076 KB
testcase_54 AC 396 ms
101,624 KB
testcase_55 AC 403 ms
101,092 KB
testcase_56 AC 397 ms
101,216 KB
testcase_57 AC 209 ms
101,224 KB
testcase_58 AC 312 ms
100,132 KB
evil_aftercontest.txt AC 491 ms
124,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
def dijkstra(g,start):
    n = len(g)
    INF = 1<<61
    dist = [INF]*(n) #startからの最短距離
    dist[start] = 0
    q = [(0,start)] #(そこまでの距離、点)
    while q:
        dv,v = heappop(q)
        if dist[v] < dv: continue
        for to, cost in g[v]:
            if dv + cost < dist[to]:
                dist[to] = dv + cost
                heappush(q, (dist[to], to))
    return dist

n,m = map(int,input().split())
g = [[] for _ in range(1+n+2*m)]
for i in range(m):
    k,c,*a = map(int,input().split())
    O = 2*i + n + 1
    E = 2*i + n + 2
    g[O].append((E,1))
    g[E].append((O,0))
    for ai in a:
        if ai%2:
            g[ai].append((O,ai//2+c))
            g[O].append((ai,ai//2+1))
        else:
            g[ai].append((E,ai//2+c))
            g[E].append((ai,ai//2))

dist = dijkstra(g,1)
print(dist[n] if dist[n] != 1<<61 else -1)
0