-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1334-findTheCity.ts
51 lines (42 loc) · 1.34 KB
/
1334-findTheCity.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { MinPriorityQueue } from '@datastructures-js/priority-queue'
/**
* 1334. Find the City With the Smallest Number of Neighbors at a Threshold Distance
* {@link https://leetcode.com/problems/find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance/ | Link}
*/
export function findTheCity(n: number, edges: number[][], distanceThreshold: number): number {
const g = Array.from({ length: n }, () => new Map<number, number>())
for (const [v1, v2, cost] of edges) {
g[v1].set(v2, cost)
g[v2].set(v1, cost)
}
const dijkstra = (v: number): number => {
const dist: number[] = Array(n).fill(Number.POSITIVE_INFINITY)
dist[v] = 0
const pq = new MinPriorityQueue<number>()
const seen = Array(n).fill(false)
pq.enqueue(v, 0)
while (!pq.isEmpty()) {
const u = pq.dequeue().element
if (seen[u]) continue
seen[u] = true
for (const [v, w] of g[u]) {
if (seen[v]) continue
const wNext = dist[u] + w
if (wNext < dist[v]) {
dist[v] = wNext
pq.enqueue(v, dist[v])
}
}
}
return dist.filter((x) => x <= distanceThreshold).length
}
let [ans, i] = [n, Number.POSITIVE_INFINITY]
for (let j = 0; j < n; j++) {
const k = dijkstra(j)
if (k < i || (k === i && j > ans)) {
ans = j
i = k
}
}
return ans
}