Divisor Jumping
CodeChefOpen on judge ↗
Problem description. You are given a MxN grid. In cell (i, j), you have value A[i][j]. From cell (a, b) you can make the following moves. Let d divide both a and b. Then, for such d, you can move to (a-d, b) OR (a, b-d) OR (a-d, b-d). Once you reach (0, 0), you stop. You wish to maximize the sum of the values of the cells you step on (inclusive of (0, 0) and the starting position). Input
HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17
CodeSearch Tutor
Hints, not spoilers — it won’t hand over the full solution unless you insist.
Sign in to chat with the tutor and save your progress.
Sign in to start