Skip to content

Commit fe2171d

Browse files
authored
feat: add ts solution to lc problem: No.1129 (#2989)
1 parent 4b72ba0 commit fe2171d

File tree

3 files changed

+139
-0
lines changed

3 files changed

+139
-0
lines changed

solution/1100-1199/1129.Shortest Path with Alternating Colors/README.md

+48
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,54 @@ func shortestAlternatingPaths(n int, redEdges [][]int, blueEdges [][]int) []int
246246
}
247247
```
248248

249+
#### TypeScript
250+
251+
```ts
252+
function shortestAlternatingPaths(
253+
n: number,
254+
redEdges: number[][],
255+
blueEdges: number[][],
256+
): number[] {
257+
const g: [Graph, Graph] = [{}, {}];
258+
const ans = Array(n).fill(-1);
259+
const vis = Array.from({ length: n }, () => Array.from({ length: 2 }, () => false));
260+
let q: Vertex[] = [
261+
[0, 0],
262+
[0, 1],
263+
];
264+
vis[0][0] = vis[0][1] = true;
265+
let d = 0;
266+
for (const [i, j] of redEdges) {
267+
(g[0][i] ??= []).push(j);
268+
}
269+
for (const [i, j] of blueEdges) {
270+
(g[1][i] ??= []).push(j);
271+
}
272+
while (q.length) {
273+
const qNext: Vertex[] = [];
274+
for (let [i, color] of q) {
275+
if (ans[i] === -1) {
276+
ans[i] = d;
277+
}
278+
color ^= 1;
279+
for (const j of g[color][i] ?? []) {
280+
if (!vis[j][color]) {
281+
vis[j][color] = true;
282+
qNext.push([j, color as Color]);
283+
}
284+
}
285+
}
286+
q = qNext;
287+
d++;
288+
}
289+
return ans;
290+
}
291+
292+
type Graph = Record<number, number[]>;
293+
type Color = 0 | 1;
294+
type Vertex = [number, Color];
295+
```
296+
249297
<!-- tabs:end -->
250298

251299
<!-- solution:end -->

solution/1100-1199/1129.Shortest Path with Alternating Colors/README_EN.md

+48
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,54 @@ func shortestAlternatingPaths(n int, redEdges [][]int, blueEdges [][]int) []int
244244
}
245245
```
246246

247+
#### TypeScript
248+
249+
```ts
250+
function shortestAlternatingPaths(
251+
n: number,
252+
redEdges: number[][],
253+
blueEdges: number[][],
254+
): number[] {
255+
const g: [Graph, Graph] = [{}, {}];
256+
const ans = Array(n).fill(-1);
257+
const vis = Array.from({ length: n }, () => Array.from({ length: 2 }, () => false));
258+
let q: Vertex[] = [
259+
[0, 0],
260+
[0, 1],
261+
];
262+
vis[0][0] = vis[0][1] = true;
263+
let d = 0;
264+
for (const [i, j] of redEdges) {
265+
(g[0][i] ??= []).push(j);
266+
}
267+
for (const [i, j] of blueEdges) {
268+
(g[1][i] ??= []).push(j);
269+
}
270+
while (q.length) {
271+
const qNext: Vertex[] = [];
272+
for (let [i, color] of q) {
273+
if (ans[i] === -1) {
274+
ans[i] = d;
275+
}
276+
color ^= 1;
277+
for (const j of g[color][i] ?? []) {
278+
if (!vis[j][color]) {
279+
vis[j][color] = true;
280+
qNext.push([j, color as Color]);
281+
}
282+
}
283+
}
284+
q = qNext;
285+
d++;
286+
}
287+
return ans;
288+
}
289+
290+
type Graph = Record<number, number[]>;
291+
type Color = 0 | 1;
292+
type Vertex = [number, Color];
293+
```
294+
247295
<!-- tabs:end -->
248296

249297
<!-- solution:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
function shortestAlternatingPaths(
2+
n: number,
3+
redEdges: number[][],
4+
blueEdges: number[][],
5+
): number[] {
6+
const g: [Graph, Graph] = [{}, {}];
7+
const ans = Array(n).fill(-1);
8+
const vis = Array.from({ length: n }, () => Array.from({ length: 2 }, () => false));
9+
let q: Vertex[] = [
10+
[0, 0],
11+
[0, 1],
12+
];
13+
vis[0][0] = vis[0][1] = true;
14+
let d = 0;
15+
for (const [i, j] of redEdges) {
16+
(g[0][i] ??= []).push(j);
17+
}
18+
for (const [i, j] of blueEdges) {
19+
(g[1][i] ??= []).push(j);
20+
}
21+
while (q.length) {
22+
const qNext: Vertex[] = [];
23+
for (let [i, color] of q) {
24+
if (ans[i] === -1) {
25+
ans[i] = d;
26+
}
27+
color ^= 1;
28+
for (const j of g[color][i] ?? []) {
29+
if (!vis[j][color]) {
30+
vis[j][color] = true;
31+
qNext.push([j, color as Color]);
32+
}
33+
}
34+
}
35+
q = qNext;
36+
d++;
37+
}
38+
return ans;
39+
}
40+
41+
type Graph = Record<number, number[]>;
42+
type Color = 0 | 1;
43+
type Vertex = [number, Color];

0 commit comments

Comments
 (0)