On the Collatz Conjecture II

I've written about the Collatz Conjecture before, right here: https://anothercasualcoder.blogspot.com/2019/05/on-collatz-conjecture.html

Coincidentally, this LC problem talks about it. Here it is: https://leetcode.com/problems/sort-integers-by-the-power-value/

1387. Sort Integers by The Power Value
Medium
The power of an integer x is defined as the number of steps needed to transform x into 1 using the following steps:
  • if x is even then x = x / 2
  • if x is odd then x = 3 * x + 1
For example, the power of x = 3 is 7 because 3 needs 7 steps to become 1 (3 --> 10 --> 5 --> 16 --> 8 --> 4 --> 2 --> 1).
Given three integers lo, hi and k. The task is to sort all integers in the interval [lo, hi] by the power value in ascending order, if two or more integers have the same power value sort them by ascending order.
Return the k-th integer in the range [lo, hi] sorted by the power value.
Notice that for any integer x (lo <= x <= hi) it is guaranteed that x will transform into 1 using these steps and that the power of x is will fit in 32 bit signed integer.

Example 1:
Input: lo = 12, hi = 15, k = 2
Output: 13
Explanation: The power of 12 is 9 (12 --> 6 --> 3 --> 10 --> 5 --> 16 --> 8 --> 4 --> 2 --> 1)
The power of 13 is 9
The power of 14 is 17
The power of 15 is 17
The interval sorted by the power value [12,13,14,15]. For k = 2 answer is the second element which is 13.
Notice that 12 and 13 have the same power value and we sorted them in ascending order. Same for 14 and 15.
Example 2:
Input: lo = 1, hi = 1, k = 1
Output: 1
Example 3:
Input: lo = 7, hi = 11, k = 4
Output: 7
Explanation: The power array corresponding to the interval [7, 8, 9, 10, 11] is [16, 3, 19, 6, 14].
The interval sorted by power is [8, 10, 11, 7, 9].
The fourth number in the sorted array is 7.
Example 4:
Input: lo = 10, hi = 20, k = 5
Output: 13
Example 5:
Input: lo = 1, hi = 1000, k = 777
Output: 570

Constraints:
  • 1 <= lo <= hi <= 1000
  • 1 <= k <= hi - lo + 1

As I mentioned in the previous Collatz Conjecture post, this is one of the open problems in math which can pay up to 1ドルM for a mathematical solution that (dis)proves that every positive integer N will eventually be transformed to 1 by following the operations listed by Collatz.

The problem in this post can be solved by:

A) Create a function to calculate the Collatz length of a number. Use memoization to speed things up

B) Push the values to a PQueue - careful with the priority, you need to take into account when Collatz(X) = Collatz(Y) but X != Y

C) Dequeue until Kth value

Code is below, cheers, stay safe from COVID19!!! ACC.


public class Solution
{
public int GetKth(int lo, int hi, int k)
{
int[] arr = new int[hi - lo + 1];

Hashtable cache = new Hashtable();
for (int index = 0, i = lo; i <= hi; i++, index++)
arr[index] = Collatz(i, cache);

PriorityQueue pQueue = new PriorityQueue();
for (int index = 0, i = lo; i <= hi; i++, index++)
pQueue.Enqueue(i, arr[index] * (hi + 1) + i);

int retVal = 0;
while (k-- > 0)
retVal = (int)pQueue.Dequeue();

return retVal;
}

private int Collatz(int n, Hashtable cache)
{
if (cache.ContainsKey(n)) return (int)cache[n];
int collatz = (n > 1) ? (1 + Collatz(n % 2 == 0 ? n / 2 : 3 * n + 1, cache)) : 0;
if (!cache.ContainsKey(n)) cache.Add(n, collatz);
return collatz;
}
}

public class PriorityQueue
{
public struct HeapEntry
{
private object item;
private int priority;
public HeapEntry(object item, int priority)
{
this.item = item;
this.priority = priority;
}
public object Item
{
get
{
return item;
}
}
public int Priority
{
get
{
return priority;
}
}
}

private int count;
private int capacity;
public HeapEntry[] heap;

public int Count
{
get
{
return this.count;
}
}

public PriorityQueue()
{
capacity = 1000000;
heap = new HeapEntry[capacity];
}

public object Dequeue()
{
object result = heap[0].Item;
//priority = heap[0].Priority;
count--;
trickleDown(0, heap[count]);
return result;
}

public void Enqueue(object item, int priority)
{
count++;
bubbleUp(count - 1, new HeapEntry(item, priority));
}

private void bubbleUp(int index, HeapEntry he)
{
int parent = (index - 1) / 2;
// note: (index > 0) means there is a parent
while ((index > 0) && (heap[parent].Priority > he.Priority))
{
heap[index] = heap[parent];
index = parent;
parent = (index - 1) / 2;
}
heap[index] = he;
}

private void trickleDown(int index, HeapEntry he)
{
int child = (index * 2) + 1;
while (child < count)
{
if (((child + 1) < count) &&
(heap[child].Priority > heap[child + 1].Priority))
{
child++;
}
heap[index] = heap[child];
index = child;
child = (index * 2) + 1;
}
bubbleUp(index, he);
}
}

Comments

Post a Comment

[フレーム]

Popular posts from this blog

Quasi FSM (Finite State Machine) problem + Vibe

Not really an FSM problem since the state isn't changing, it is just defined by the current input. Simply following the instructions should do it. Using VSCode IDE you can also engage the help of Cline or Copilot for a combo of coding and vibe coding, see below screenshot. Cheers, ACC. Process String with Special Operations I - LeetCode You are given a string  s  consisting of lowercase English letters and the special characters:  * ,  # , and  % . Build a new string  result  by processing  s  according to the following rules from left to right: If the letter is a  lowercase  English letter append it to  result . A  '*'   removes  the last character from  result , if it exists. A  '#'   duplicates  the current  result  and  appends  it to itself. A  '%'   reverses  the current  result . Return the final string  result  after processing all char...

Shortest Bridge – A BFS Story (with a Twist)

Here's another one from the Google 30 Days challenge on LeetCode — 934. Shortest Bridge . The goal? Given a 2D binary grid where two islands (groups of 1s) are separated by water (0s), flip the fewest number of 0s to 1s to connect them. Easy to describe. Sneaky to implement well. 🧭 My Approach My solution follows a two-phase Breadth-First Search (BFS) strategy: Find and mark one island : I start by scanning the grid until I find the first 1 , then use BFS to mark all connected land cells as 2 . I store their positions for later use. Bridge-building BFS : For each cell in the marked island, I run a BFS looking for the second island. Each BFS stops as soon as it hits a cell with value 1 . The minimum distance across all these searches gives the shortest bridge. 🔍 Code Snippet Here's the core logic simplified: public int ShortestBridge(int[][] grid) { // 1. Mark one island as '2' and gather its coordinates List<int> island = FindAndMark...

Classic Dynamic Programming IX

A bit of vibe code together with OpenAI O3. I asked O3 to just generate the sieve due to laziness. Sieve is used to calculate the first M primes (when I was using Miller-Rabin, was giving me TLE). The DP follows from that in a straightforward way: calculate the numbers from i..n-1, then n follows by calculating the min over all M primes. Notice that I made use of Goldbach's Conjecture as a way to optimize the code too. Goldbach's Conjecture estates that any even number greater than 2 is the sum of 2 primes. The conjecture is applied in the highlighted line. Cheers, ACC. PS: the prompt for the sieve was the following, again using Open AI O3 Advanced Reasoning: " give me a sieve to find the first M prime numbers in C#. The code should produce a List<int> with the first M primes " Minimum Number of Primes to Sum to Target - LeetCode You are given two integers  n  and  m . You have to select a multiset of  prime numbers  from the  first   m  pri...