-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2017-grid-game.dart
46 lines (37 loc) · 1.06 KB
/
2017-grid-game.dart
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
class Solution {
int gridGame(List<List<int>> grid) {
final int n = grid[0].length;
List<List<int>> prefixSum = List.generate(2, (i) => List.filled(n + 1, 0));
for (int i = 0; i < n; i++) {
prefixSum[0][i + 1] = prefixSum[0][i] + grid[0][i];
prefixSum[1][i + 1] = prefixSum[1][i] + grid[1][i];
}
int result = 9223372036854775807;
for (int i = 0; i < n; i++) {
int top = prefixSum[0][n] - prefixSum[0][i + 1];
int bottom = prefixSum[1][i];
int secondRobotPoints = top > bottom ? top : bottom;
result = result < secondRobotPoints ? result : secondRobotPoints;
}
return result;
}
}
// Test cases
void main() {
final solution = Solution();
final grid1 = [
[2, 5, 4],
[1, 5, 1]
];
print('Test Case 1: ${solution.gridGame(grid1)}'); // Expected: 4
final grid2 = [
[3, 3, 1],
[8, 5, 2]
];
print('Test Case 2: ${solution.gridGame(grid2)}'); // Expected: 4
final grid3 = [
[1, 3, 1, 15],
[1, 3, 3, 1]
];
print('Test Case 3: ${solution.gridGame(grid3)}'); // Expected: 7
}