zoukankan      html  css  js  c++  java
  • PAT 1100. Mars Numbers

    People on Mars count their numbers with base 13:

    Zero on Earth is called "tret" on Mars.
    The numbers 1 to 12 on Earch is called "jan, feb, mar, apr, may, jun, jly, aug, sep, oct, nov, dec" on Mars, respectively.
    For the next higher digit, Mars people name the 12 numbers as "tam, hel, maa, huh, tou, kes, hei, elo, syy, lok, mer, jou", respectively.
    For examples, the number 29 on Earth is called "hel mar" on Mars; and "elo nov" on Mars corresponds to 115 on Earth. In order to help communication between people from these two planets, you are supposed to write a program for mutual translation between Earth and Mars number systems.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains a positive integer N (< 100). Then N lines follow, each contains a number in [0, 169), given either in the form of an Earth number, or that of Mars.

    Output Specification:

    For each number, print in a line the corresponding number in the other language.

    Sample Input:

    4
    29
    5
    elo nov
    tam

    Sample Output:

    hel mar
    may
    115
    13

    #include<iostream>
    #include<algorithm>
    #include<vector>
    #include<sstream>
    using namespace std;
    int main(){
        vector<string> gewei{"tret","jan","feb","mar","apr","may","jun","jly","aug","sep","oct","nov","dec"};
        vector<string> shiwei{"#","tam","hel","maa","huh","tou","kes","hei","elo","syy","lok","mer","jou"};
        int N; cin>>N;
        string s,str; int a,b,c;
        getchar();
        while(N--){
            int sum=0;
            getline(cin,s);
            if(isdigit(s[0])){
               c=stoi(s); // 将s转化为int
            if(c<13)  
    		   cout<<gewei[c]<<endl;
            else{
                if(c%13==0) cout<<shiwei[c/13]<<endl; // 13的倍数是不要输出tret的
                else cout<<shiwei[c/13]<<" "<<gewei[c%13]<<endl;
                }
            }
            else{
                istringstream is(s); // 利用istringstream读取s中的单词
                while(is>>str){
                    auto it=find(shiwei.begin(),shiwei.end(),str);
                    if(it!=shiwei.end())
                       sum+=(it-shiwei.begin())*13;
                    auto itt=find(gewei.begin(),gewei.end(),str);
                    if(itt!=gewei.end())
                       sum+=(itt-gewei.begin());
                }
                cout<<sum<<endl; 
            }
        }
        return 0;
    }
    
  • 相关阅读:
    1
    前端必读书籍推荐
    cn
    网站爬虫优化
    es学习
    适应移动端
    chrome禁止缓存,每次都最新的
    vue 源码环境
    [Java] 设计模式之工厂系列 04 (自定义模拟 spring 读取xml文件 beanFactory)
    [Java] JDOM 读取 xml 文件 示例程序初步
  • 原文地址:https://www.cnblogs.com/A-Little-Nut/p/8430028.html
Copyright © 2011-2022 走看看