2017. Grid Game
Difficulty: Medium
Topics: Array, Matrix, Prefix Sum
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.
Example 1:
- Input: grid = [[2,5,4],[1,5,1]]
- Output: 4
-
Explanation: The optimal path taken by the first robot is shown in red, and the optimal path taken by the second robot is shown in blue.
- The cells visited by the first robot are set to 0.
- The second robot will collect 0 0 4 0 = 4 points.
Example 2:
- Input: grid = [[3,3,1],[8,5,2]]
- Output: 4
-
Explanation: The optimal path taken by the first robot is shown in red, and the optimal path taken by the second robot is shown in blue.
- The cells visited by the first robot are set to 0.
- The second robot will collect 0 3 1 0 = 4 points.
Example 3:
- Input: grid = [[1,3,1,15],[1,3,3,1]]
- Output: 7
-
Explanation: The optimal path taken by the first robot is shown in red, and the optimal path taken by the second robot is shown in blue.
- The cells visited by the first robot are set to 0.
- The second robot will collect 0 1 3 3 0 = 7 points.
Constraints:
- grid.length == 2
- n == grid[r].length
- 1 4
- 1 5
Hint:
- There are n choices for when the first robot moves to the second row.
- Can we use prefix sums to help solve this problem?
Solution:
We'll use the following approach:
Prefix Sum Calculation: We'll compute the prefix sums for both rows of the grid to efficiently calculate the sum of points for any subarray.
-
Simulating Optimal Movement:
- The first robot determines its path to minimize the points left for the second robot.
- At each column transition, the first robot can choose to move down, splitting the grid into two segments:
- Upper remaining points: Points in the top row after the transition column.
- Lower remaining points: Points in the bottom row before the transition column.
-
Minimizing the Maximum Points for the Second Robot:
- At each transition, calculate the maximum points the second robot can collect after the first robot's path.
- Track the minimum of these maximums across all transitions.
Let's implement this solution in PHP: 2017. Grid Game
<?php function gridGame($grid) { ... ... ... /** * go to ./solution.php */ } // Example usage $grid1 = [[2, 5, 4], [1, 5, 1]]; $grid2 = [[3, 3, 1], [8, 5, 2]]; $grid3 = [[1, 3, 1, 15], [1, 3, 3, 1]]; echo gridGame($grid1) . "\n"; // Output: 4 echo gridGame($grid2) . "\n"; // Output: 4 echo gridGame($grid3) . "\n"; // Output: 7 ?>
Explanation:
-
Prefix Sum Calculation:
- prefixTop and prefixBottom store cumulative sums for the top and bottom rows, respectively.
- These allow efficient range sum calculations.
-
Simulating the First Robot's Path:
- At each column i, the first robot can decide to move down after column i.
- This splits the grid into two regions:
- Top row after column i (collected points: prefixTop[n] - prefixTop[i 1]).
- Bottom row before column i (collected points: prefixBottom[i]).
-
Second Robot's Optimal Points:
- The second robot will take the maximum of the two remaining regions.
- We track the minimum of these maximums for all possible transitions.
-
Complexity:
- Time Complexity: O(n), as we compute prefix sums and loop through the grid once.
- Space Complexity: O(n), due to prefix sum arrays.
Example Walkthrough
Input: grid = [[2, 5, 4], [1, 5, 1]]
-
Prefix Sums:
- prefixTop = [0, 2, 7, 11]
- prefixBottom = [0, 1, 6, 7]
-
Transition Points:
- i = 0: Top Remaining = 11 - 7 = 9, Bottom Remaining = 0 → Second Robot = 9.
- i = 1: Top Remaining = 11 - 11 = 4, Bottom Remaining = 1 → Second Robot = 4.
- i = 2: Top Remaining = 0, Bottom Remaining = 6 → Second Robot = 6.
- Minimum Points for Second Robot: min(9, 4, 6) = 4.
This matches the expected output.
Contact Links
If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks ?. Your support would mean a lot to me!
If you want more helpful content like this, feel free to follow me:
- GitHub
The above is the detailed content of Grid Game. For more information, please follow other related articles on the PHP Chinese website!

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
