結果
問題 | No.1480 Many Complete Graphs |
ユーザー | ああいい |
提出日時 | 2021-12-28 22:14:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 717 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 100,888 KB |
最終ジャッジ日時 | 2024-10-02 16:23:33 |
合計ジャッジ時間 | 10,281 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 42 ms
52,480 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 97 ms
82,944 KB |
testcase_14 | AC | 74 ms
72,704 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 108 ms
80,768 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 89 ms
82,176 KB |
testcase_22 | AC | 67 ms
70,912 KB |
testcase_23 | AC | 108 ms
84,224 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | TLE | - |
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)) break print(-1)