Problem Description
Given an encoded string encodedText
and a number of rows rows
, return the original string originalText
that was encoded using a slanted transposition cipher.
Key Insights
- The original text is filled into a matrix in a zigzag manner, starting from the top-left to the bottom-right.
- The filling order follows a diagonal pattern, and the remaining cells in the matrix are filled with spaces.
- The encoded string is formed by reading the matrix row-wise.
- The number of columns can be derived based on the length of the
encodedText
and the number ofrows
.
Space and Time Complexity
Time Complexity: O(n) where n is the length of encodedText
, since we process each character once.
Space Complexity: O(n) for storing the intermediate matrix.
Solution
To decode the slanted ciphertext, we can follow these steps:
- Calculate the number of columns in the matrix using the formula:
columns = (length of encodedText + rows - 1) // rows
. - Create a matrix with the determined number of rows and columns, initialized with spaces.
- Fill the matrix by iterating over the
encodedText
in the zigzag (diagonal) manner. - Read the matrix row-wise to reconstruct the
originalText
.
We will use a list of lists (2D array) to represent the matrix and process the characters accordingly.