Skip to content

Commit

Permalink
problem: new problem solution - 1266 . Minimum Time Visiting All Points
Browse files Browse the repository at this point in the history
  • Loading branch information
squxq committed Dec 3, 2023
1 parent 764cae4 commit 8c4ceac
Show file tree
Hide file tree
Showing 3 changed files with 123 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ My approach to solving LeetCode problems typically involves the following steps:
| 572 | [Subtree of Another Tree](https://leetcode.com/problems/subtree-of-another-tree/) | Algorithms | [TypeScript](./problems/algorithms/subtreeOfAnotherTree/SubtreeOfAnotherTree.ts) | Easy |
| 1662 | [Check If Two String Arrays are Equivalent](https://leetcode.com/problems/check-if-two-string-arrays-are-equivalent/) | Algorithms | [TypeScript](./problems/algorithms/checkIfTwoStringArraysAreEquivalent/CheckIfTwoStringArraysAreEquivalent.ts) | Easy |
| 1160 | [Find Words That Can Be Formed by Characters](https://leetcode.com/problems/find-words-that-can-be-formed-by-characters/) | Algorithms | [TypeScript](./problems/algorithms/findWordsThatCanBeFormedByCharacters/FindWordsThatCanBeFormedByCharacters.ts) | Easy |
| 1266 | [Minimum Time Visiting All Points](https://leetcode.com/problems/minimum-time-visiting-all-points/) | Algorithms | [TypeScript](./problems/algorithms/minimumTimeVisitingAllPoints/MinimumTimeVisitingAllPoints.ts) | Easy |
| ... | ... | ... | ... | ... |

In this table:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Source : https://leetcode.com/problems/minimum-time-visiting-all-points/
// Author : Francisco Tomas
// Date : 2023-12-03

import { minTimeToVisitAllPoints } from "./MinimumTimeVisitingAllPoints";

describe("minimum time visiting all points", () => {
test("example 1", () => {
const result: number = minTimeToVisitAllPoints([
[1, 1],
[3, 4],
[-1, 0],
]);
expect(result).toBe(7);
});

test("example 2", () => {
const result: number = minTimeToVisitAllPoints([
[3, 2],
[-2, 2],
]);
expect(result).toBe(5);
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
// Source : https://leetcode.com/problems/minimum-time-visiting-all-points/
// Author : Francisco Tomas
// Date : 2023-12-03

/*****************************************************************************************************
*
* On a 2D plane, there are n points with integer coordinates points[i] = [xi, yi]. Return the minimum
* time in seconds to visit all the points in the order given by points.
*
* You can move according to these rules:
*
* In 1 second, you can either:
*
* move vertically by one unit,
* move horizontally by one unit, or
* move diagonally sqrt(2) units (in other words, move one unit vertically then one
* unit horizontally in 1 second).
*
* You have to visit the points in the same order as they appear in the array.
* You are allowed to pass through points that appear later in the order, but these do not
* count as visits.
*
* Example 1:
*
* Input: points = [[1,1],[3,4],[-1,0]]
* Output: 7
* Explanation: One optimal path is [1,1] -> [2,2] -> [3,3] -> [3,4] -> [2,3] -> [1,2] -> [0,1] ->
* [-1,0]
* Time from [1,1] to [3,4] = 3 seconds
* Time from [3,4] to [-1,0] = 4 seconds
* Total time = 7 seconds
*
* Example 2:
*
* Input: points = [[3,2],[-2,2]]
* Output: 5
*
* Constraints:
*
* points.length == n
* 1 <= n <= 100
* points[i].length == 2
* -1000 <= points[i][0], points[i][1] <= 1000
******************************************************************************************************/

/**
* number[][] -> number
* return the minimum time in seconds to visit all the points (in order) in the given array points
* Stub:
function minTimeToVisitAllPoints(points: number[][]): number {return 0}
* Tests:
* I: points = [[1,1],[3,4],[-1,0]] -> O: 7
* I: points = [[3,2],[-2,2]] -> O: 5
*/

/**
* Time Complexity: O(n), where n is the length of points
* Space Complexity: O(1)
* Runtime: 63ms (44.12%)
* Memory: 44.28MB (97.06%)
*/
export function minTimeToVisitAllPointsV1(points: number[][]): number {
let ans: number = 0;
for (let i: number = 1; i < points.length; i++) {
ans += Math.max(
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
Math.abs(points[i]![0]! - points[i - 1]![0]!),
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
Math.abs(points[i]![1]! - points[i - 1]![1]!),
);
}
return ans;
}

/**
* Time Complexity: O(n), where n is the length of points
* Space Complexity: O(1)
* Runtime: 46ms (97.06%)
* Memory: 44.70MB (55.88%)
*/
export function minTimeToVisitAllPoints(points: number[][]): number {
let ans: number = 0;
for (let i: number = 1; i < points.length; i++) {
const point1: number[] = points[i - 1] as number[];
const point2: number[] = points[i] as number[];
ans += Math.max(
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
Math.abs(point2[0]! - point1[0]!),
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
Math.abs(point2[1]! - point1[1]!),
);
}
return ans;
}

0 comments on commit 8c4ceac

Please sign in to comment.