[LeetCode] Moving Stones Until Consecutive

1033. Moving Stones Until Consecutive

There are three stones in different positions on the X-axis. You are given three integers a, b, and c, the positions of the stones.

In one move, you pick up a stone at an endpoint (i.e., either the lowest or highest position stone), and move it to an unoccupied position between those endpoints. Formally, let’s say the stones are currently at positions x, y, and z with x < y < z. You pick up the stone at either position x or position z, and move that stone to an integer position k, with x < k < z and k != y.

The game ends when you cannot make any more moves (i.e., the stones are in three consecutive positions).

Return an integer array answer of length 2 where:

  • answer[0] is the minimum number of moves you can play, and
  • answer[1] is the maximum number of moves you can play.
1
2
3
4
5
6
7
8
9
10
11
class Solution {
public:
vector<int> numMovesStones(int a, int b, int c) {
if(a > b) return numMovesStones(b,a,c);
if(a > c) return numMovesStones(c,b,a);
if(b > c) return numMovesStones(a,c,b);
int l = b - a - 1, r = c - b - 1;
if(l == 1 or r == 1) return {1, l + r};
return {(l ? 1 : 0) + (r ? 1 : 0), l + r};
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/07/12/PS/LeetCode/moving-stones-until-consecutive/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.