Given a positive integer n
, you can apply one of the following operations:
- If
n
is even, replacen
withn / 2
. - If
n
is odd, replacen
with eithern + 1
orn - 1
.
Return the minimum number of operations needed for n
to become 1
.
Input: n = 8 Output: 3 Explanation: 8 -> 4 -> 2 -> 1
Input: n = 7 Output: 4 Explanation: 7 -> 8 -> 4 -> 2 -> 1 or 7 -> 6 -> 3 -> 2 -> 1
Input: n = 4 Output: 2
1 <= n <= 231 - 1
use std::collections::HashSet;
use std::collections::VecDeque;
impl Solution {
pub fn integer_replacement(n: i32) -> i32 {
let mut nums = vec![(n as i64, 0)].into_iter().collect::<VecDeque<_>>();
let mut seen = vec![n as i64].into_iter().collect::<HashSet<_>>();
while let Some((x, y)) = nums.pop_front() {
if x == 1 {
return y;
}
if x % 2 == 0 && !seen.contains(&(x / 2)) {
nums.push_back((x / 2, y + 1));
seen.insert(x / 2);
} else if x % 2 == 1 {
if !seen.contains(&(x + 1)) {
nums.push_back((x + 1, y + 1));
seen.insert(x + 1);
}
if !seen.contains(&(x - 1)) {
nums.push_back((x - 1, y + 1));
seen.insert(x - 1);
}
}
}
0
}
}