Ultraviolet A 401 palindromes (string, ECHO)

Source: Internet
Author: User

Palindromes

A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string"Abcdedcba"Is a palindrome because it is the same when the string is read from left to right as when the string is read from right to left.


A mirrored string is a string for which when each of the elements of the string is changed to its reverse (if it has a reverse) and the string is read backwards the result is the same as the original string. for example, the string"3 aiae"Is a mirrored string because""And"I"Are their own reverses, and"3"And"E"Are each others 'reverses.


A mirrored palindrome is a string that meets the criteria of a regular palindrome and the criteria of a mirrored string. the string"Atoyota"Is a mirrored palindrome because if the string is read backwards, the string is the same as the original and because if each of the characters is replaced by its reverse and the result is read backwards, the result is the same as the original string. of course,"","T","O", And"Y"Are all their own reverses.


A list of all valid characters and their reverses is as follows.


Character Reverse Character Reverse Character Reverse
A A M M Y Y
B   N   Z 5
C   O O 1 1
D   P   2 S
E 3 Q   3 E
F   R   4  
G   S 2 5 Z
H H T T 6  
I I U U 7  
J L V V 8 8
K   W W 9  
L J X X    


NoteThat O (zero) and 0 (the letter) are considered the same character and thereforeOnlyThe letter "0" is a valid character.

Input input consists of strings (one per line) each of which will consist of one to twenty valid characters. there will be no invalid characters in any of the strings. your program shocould read to the end of file.

Output for each input string, you shocould print the string starting in column 1 immediately followed by exactly one of the following strings.


String Criteria
"-- Is not a palindrome." If the string is not a palindrome and is not a mirrored string
"-- Is a regular palindrome." If the string is a palindrome and is not a mirrored string
"-- Is a mirrored string." If the string is not a palindrome and is a mirrored string
"-- Is a mirrored palindrome." If the string is a palindrome and is a mirrored string

NoteThat the output line is to include-'S and spacing exactly as shown in the table above and demonstrated in the sample output below.

In addition, after each output line, you must print an empty line.

Sample Input
NOTAPALINDROME ISAPALINILAPASI 2A3MEAS ATOYOTA

Sample output
NOTAPALINDROME -- is not a palindrome. ISAPALINILAPASI -- is a regular palindrome. 2A3MEAS -- is a mirrored string. ATOYOTA -- is a mirrored palindrome.



It is good to give a string to determine whether it is a return string or image string. It is good to judge whether to save the image character of each character using an array. No space is available.

Note: If the string length is an odd number, the letter in the middle must be symmetric.

#include<cstdio>#include<cctype>#include<cstring>const int N = 35;int l;char s[N], mc[] = "A   3  HIL JM O   2TUVWXY5", mn[] = "1SE Z  8 ";bool isRegular(){    for (int i = 1; i <= l / 2; ++i)        if (s[i] != s[l - i + 1]) return false;    return true;}bool isMirrored(){    for (int i = 1; i <= (l + 1) / 2 ; ++i)    {        if (isalpha (s[i]) && s[l - i + 1] != mc[s[i] - 'A']) return false;        else if (isdigit (s[i]) && s[l - i + 1] != mn[s[i] - '1']) return false;    }    return true;}int main(){    while (scanf ("%s", s + 1) != EOF)    {        l = strlen (s + 1);        if (isMirrored())        {            if (isRegular()) printf ("%s -- is a mirrored palindrome.\n\n", s + 1);            else printf ("%s -- is a mirrored string.\n\n", s + 1);        }        else if (isRegular()) printf ("%s -- is a regular palindrome.\n\n", s + 1);        else printf ("%s -- is not a palindrome.\n\n", s + 1);    }    return 0;}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.