結果
問題 | No.1069 電柱 / Pole (Hard) |
ユーザー | Salmonize |
提出日時 | 2020-05-29 23:36:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,391 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 239,264 KB |
最終ジャッジ日時 | 2024-11-06 12:14:43 |
合計ジャッジ時間 | 4,024 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
17,952 KB |
testcase_01 | AC | 32 ms
11,008 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
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 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
testcase_77 | -- | - |
testcase_78 | -- | - |
testcase_79 | -- | - |
testcase_80 | -- | - |
testcase_81 | -- | - |
testcase_82 | -- | - |
ソースコード
import sys, heapq as hq readline = sys.stdin.readline ns = lambda: readline().rstrip() ni = lambda: int(readline().rstrip()) nm = lambda: map(int, readline().split()) nl = lambda: list(map(int, readline().split())) def k_shortestPath(G, s, t, k): N = len(G) d = [10**18]*N d[t] = 0 p = [-1]*N q = [(0, t, t)] ret = list() while q: wei, src, dst = hq.heappop(q) if p[dst] >= 0: continue p[dst] = src for fdst, fwei in G[dst]: if d[fdst] > wei + fwei: d[fdst] = wei + fwei hq.heappush(q, (d[fdst], dst, fdst)) l = 0 R = [(0, -1, s)] while R: wei, src, dst = hq.heappop(R) if dst == t: ret.append(wei + d[s]) l += 1 if l == k: return ret for fdst, fwei in G[dst]: hq.heappush(R, (wei + fwei - d[dst] + d[fdst], dst, fdst)) return None def solve(): n, m, k = nm() X, Y = nm() X -= 1; Y -= 1 points = [tuple(nm()) for _ in range(n)] G = [list() for _ in range(n)] for _ in range(m): u, v = nm() u -= 1; v -= 1 p, q = points[u] r, s = points[v] c = ((p - r)**2 + (q - s)**2) ** .5 G[u].append((v, c)) G[v].append((u, c)) res = k_shortestPath(G, X, Y, k) print(*res, sep='\n') return solve()