GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Sunday 21 August 2022

[Solution] Matching Palindrome Round E Solution 2022 - Kick Start 2022



Problem

You are given a palindrome string P of length N consisting of only lowercase letters of the English alphabet. Find the shortest non-empty palindrome string Q such that P concatenated with Q forms a palindrome. Formally, the string PQ forms a palindrome.

Input

The first line of the input gives the number of test cases, TT test cases follow. Each test case consists of two lines. The first line of each test case contains an integer N denoting the length of the string P. The second line of each test case contains a palindrome string P of length N.

Output

For each test case, output one line containing Case #xy, where x is the test case number (starting from 1) and y is the non-empty palindrome string Q as described above.

Limits

Memory limit: 1 GB.
1T100.

Solution Click Below:-  👉CLICK HERE👈
👇👇👇👇👇


String P is a palindrome consisting of only lowercase letters of the English alphabet.

Test Set 1

Time limit: 20 seconds.
1N103.

Test Set 2

Time limit: 40 seconds.
1N105.

In Case 1, the shortest palindrome string Q is abba such that the concatenation PQ is abbaabba which is a palindrome.
In Case 2, the shortest palindrome string Q is c such that the concatenation PQ is ccccc which is a palindrome.
In Case 3, the shortest palindrome string Q is cdc such that the concatenation PQ is cdccdccdc which is a palindrome.

No comments:

Post a Comment