An infamous gang of cyber criminals named “The Gray Cyber Mob”, which is behind many hacking attacks and drug trafficking, has recently become a target for the FBI. After intercepting some of their messages, which looked like complete nonsense, the agency learned that they indeed encrypt their messages, and studied their method of encryption.
Their messages consist of lowercase latin letters only, and every word is encrypted separately as follows:
Convert every letter to its ASCII value. Add 1 to the first letter, and then for every letter from the second one to the last one, add the value of the previous letter. Subtract 26 from every letter until it is in the range of lowercase letters a-z in ASCII. Convert the values back to letters.
The FBI needs an efficient method to decrypt messages. Write a function named decrypt(word) that receives a string that consists of small latin letters only, and returns the decrypted word.
Explain your solution and analyze its time and space complexities.
Since the function should be used on messages with many words, make sure the function is as efficient as possible in both time and space. Explain the correctness of your function, and analyze its asymptotic runtime and space complexity.
Note: Most programing languages have built-in methods of converting letters to ASCII values and vice versa. You may search the internet for the appropriate method.
input: word ="dnotq"output: "crime"Explanation:
Decrypted message: c r i m e
Step 1:99114105109101Step 2:100214319428529Step 3:100110111116113Encrypted message: d n o t q
The encryption process shifts each character’s ASCII value by the sum of all previous encrypted values, wrapping around if it goes below ‘a’. To decrypt, we reverse this process: for each character, subtract the cumulative sum so far, and if the result is below ‘a’, wrap it back into the lowercase range. This reconstructs the original word.