-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path2017-grid-game.js
38 lines (35 loc) · 1.39 KB
/
2017-grid-game.js
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
/**
* 2017. Grid Game
* https://leetcode.com/problems/grid-game/
* Difficulty: Medium
*
* You are given a 0-indexed 2D array grid of size 2 x n, where grid[r][c] represents the number
* of points at position (r, c) on the matrix. Two robots are playing a game on this matrix.
*
* Both robots initially start at (0, 0) and want to reach (1, n-1). Each robot may only move
* to the right ((r, c) to (r, c + 1)) or down ((r, c) to (r + 1, c)).
*
* At the start of the game, the first robot moves from (0, 0) to (1, n-1), collecting all the
* points from the cells on its path. For all cells (r, c) traversed on the path, grid[r][c] is
* set to 0. Then, the second robot moves from (0, 0) to (1, n-1), collecting the points on its
* path. Note that their paths may intersect with one another.
*
* The first robot wants to minimize the number of points collected by the second robot. In
* contrast, the second robot wants to maximize the number of points it collects. If both
* robots play optimally, return the number of points collected by the second robot.
*/
/**
* @param {number[][]} grid
* @return {number}
*/
var gridGame = function(grid) {
let result = Infinity;
let sum1 = grid[0].reduce((a, b) => a + b, 0);
let sum2 = 0;
for (let i = 0; i < grid[0].length; i++) {
sum1 -= grid[0][i];
result = Math.min(result, Math.max(sum1, sum2));
sum2 += grid[1][i];
}
return result;
};