Codeforces round #271 (Div. 2) A. keyboard

Source: Internet
Author: User

Our good friend Mole is trying to code a big message. He is typing on an unusual keyboard with characters arranged in following way:

qwertyuiopasdfghjkl;zxcvbnm,./

Unfortunately mole is blind, so sometimes it is problem for him to put his hands accurately. he accidentally moved both his hands with one position to the left or to the right. that means that now he presses not a button he wants, but one neighboring button (left or right, as specified in input ).

We have a sequence of characters he has typed and we want to find the original message.

Input

First line of the input contains one letter describing direction of shifting ('L' or 'R' respectively for left or right ).

Second line contains a sequence of characters written by mole. the size of this sequence will be no more than 100. sequence contains only symbols that appear on mole's keyboard. it doesn't contain spaces as there is no space on mole's keyboard.

It is guaranteed that even though mole hands are moved, he is still pressing buttons on keyboard and not hitting outside it.

Output

Print a line that contains the original message.

Sample test (s) Input
Rs;;upimrrfod;pbr
Output
allyouneedislove

Question: seek the original string.

Idea: simulation.

#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;char str[123456];char dir[42];int main() {string w[3];w[0] = "qwertyuiop";w[1] = "asdfghjkl;";w[2] = "zxcvbnm,./";scanf("%s%s", dir, str);for (int i = 0; str[i]; i++) {for (int j = 0; j < 3; j++) {for (int k = 0; k < w[j].length(); k++) {if (w[j][k] == str[i]) {if (dir[0] == 'L')printf("%c", w[j][k+1]);else printf("%c", w[j][k-1]);}}}}printf("\n");return 0;}




Codeforces round #271 (Div. 2) A. keyboard

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.