zoukankan      html  css  js  c++  java
  • 【CODEFORCES】 A. Keyboard

    A. Keyboard
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

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

    qwertyuiop
    asdfghjkl;
    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
    R
    s;;upimrrfod;pbr
    
    output
    allyouneedislove
    

    题解:水题,打两个表即可了。

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    
    using namespace std;
    
    char c,s[150];
    int r[30]={97,'v','x','s','w','d','f','g','u','h','j','k','n','b','i','o',97,'e','a','r','y','c','q','z','t',97},
        l[30]={'s','n','v','f','r','g','h','j','o','k','l',';',',','m','p','[','w','t','d','y','i','b','e','c','u','x'};
    
    int main()
    {
        scanf("%c",&c);
        if (c=='R')
        {
            scanf("%s",s);
            for (int i=0;i<strlen(s);i++) if (s[i]=='[') cout <<"p";
            else if (s[i]==';') cout <<"l";
            else if (s[i]==',') cout <<"m";
            else if (s[i]=='.') cout <<",";
            else if (s[i]=='/') cout <<".";
            else printf("%c",r[s[i]-97]);
        }
        if (c=='L')
        {
            scanf("%s",s);
            for (int i=0;i<strlen(s);i++) if (s[i]=='.') cout <<"/";
            else if (s[i]==',') cout <<".";
            else printf("%c",l[s[i]-97]);
        }
        return 0;
    }




  • 相关阅读:
    SQL Azure (17) SQL Azure V12
    Microsoft Azure News(5) Azure新DV2系列虚拟机上线
    Azure Redis Cache (3) 在Windows 环境下使用Redis Benchmark
    Azure PowerShell (11) 使用自定义虚拟机镜像模板,创建Azure虚拟机并绑定公网IP(VIP)和内网IP(DIP)
    Windows Azure Virtual Machine (31) 迁移Azure虚拟机
    Windows Azure Web Site (16) Azure Web Site HTTPS
    Azure China (12) 域名备案问题
    一分钟快速入门openstack
    管理员必备的Linux系统监控工具
    Keepalived+Nginx实现高可用和双主节点负载均衡
  • 原文地址:https://www.cnblogs.com/yjbjingcha/p/6783243.html
Copyright © 2011-2022 走看看