Problem Description
We build a table of n rows (1-indexed). We start by writing 0 in the 1st row. Now in every subsequent row, we look at the previous row and replace each occurrence of 0 with 01, and each occurrence of 1 with 10. Given two integer n and k, return the k-th (1-indexed) symbol in the n-th row of a table of n rows.
Key Insights
- The sequence is generated by recursively replacing symbols based on their previous row.
- Each row doubles the length of the previous row, leading to a total of 2^(n-1) symbols in the n-th row.
- The k-th symbol can be determined without building the entire row by utilizing the properties of binary representation.
Space and Time Complexity
Time Complexity: O(n) - The solution involves finding the k-th symbol through recursive steps based on the binary representation of k. Space Complexity: O(1) - Only a constant amount of space is used for variables during computation.
Solution
To find the k-th symbol in the n-th row of the sequence, we can utilize recursive properties. The k-th symbol can be determined based on the parent symbol's position in the previous row. If k is odd, the symbol is the same as the parent; if k is even, the symbol is the opposite. This can be computed efficiently without generating the entire row.