結果
問題 | No.1480 Many Complete Graphs |
ユーザー | ああいい |
提出日時 | 2021-12-28 22:09:32 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 695 bytes |
コンパイル時間 | 352 ms |
コンパイル使用メモリ | 82,536 KB |
実行使用メモリ | 102,736 KB |
最終ジャッジ日時 | 2024-10-02 16:19:51 |
合計ジャッジ時間 | 8,502 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,984 KB |
testcase_01 | AC | 40 ms
52,736 KB |
testcase_02 | AC | 39 ms
53,120 KB |
testcase_03 | AC | 40 ms
52,480 KB |
testcase_04 | AC | 39 ms
52,480 KB |
testcase_05 | AC | 39 ms
52,608 KB |
testcase_06 | AC | 40 ms
52,608 KB |
testcase_07 | AC | 39 ms
52,608 KB |
testcase_08 | AC | 45 ms
58,752 KB |
testcase_09 | AC | 57 ms
64,896 KB |
testcase_10 | AC | 57 ms
65,280 KB |
testcase_11 | AC | 47 ms
60,288 KB |
testcase_12 | AC | 47 ms
61,184 KB |
testcase_13 | AC | 77 ms
82,980 KB |
testcase_14 | AC | 62 ms
73,088 KB |
testcase_15 | AC | 302 ms
87,680 KB |
testcase_16 | AC | 176 ms
84,480 KB |
testcase_17 | AC | 215 ms
83,656 KB |
testcase_18 | AC | 95 ms
80,768 KB |
testcase_19 | AC | 176 ms
83,748 KB |
testcase_20 | AC | 273 ms
84,780 KB |
testcase_21 | AC | 77 ms
81,920 KB |
testcase_22 | AC | 60 ms
71,680 KB |
testcase_23 | AC | 97 ms
84,480 KB |
testcase_24 | AC | 372 ms
87,680 KB |
testcase_25 | AC | 541 ms
92,340 KB |
testcase_26 | AC | 379 ms
94,540 KB |
testcase_27 | AC | 366 ms
87,296 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
evil_aftercontest.txt | -- | - |
ソースコード
import sys r = sys.stdin N,M = map(int,r.readline().split()) G = [[] for _ in range(N + 1 + M)] for i in range(M): l = list(map(int,r.readline().split())) for k in range(2,len(l)): G[l[k]].append(N + i + 1) G[N + i + 1].append((l[k],l[1])) import heapq q = [] heapq.heapify(q) heapq.heappush(q,(0,1)) C = 10 ** 16 dist = [C] * (N + 1) dist[1] = 0 while len(q): d,i = heapq.heappop(q) if i == N: print(d) exit() if d > dist[i]: continue for m in G[i]: for s,c in G[m]: u = (i + s + 1) // 2 + c + dist[i] if u < dist[s]: dist[s] = u heapq.heappush(q,(u,s)) print(-1)