PAT甲级真题 1100 Mars Numbers (20分) C++实现

题目

People on Mars count their numbers with base 13:
Zero on Earth is called “tret” on Mars.
The numbers 1 to 12 on Earth 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

思路

水题,考察细致程度。

需要注意的是:

  1. tret是4位的,不要都当做3位;
  2. 当两位数的个位为0时,不用输出tret;例如输入13,直接输出tam,而不是tam tret。

代码

#include <iostream>
#include <vector>
#include <cctype>
using namespace std;

vector<string> mar1 = {"tret", "jan", "feb", "mar", "apr", "may", "jun", "jly", "aug", "sep", "oct", "nov", "dec"};
vector<string> mar2 = {"", "tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mer", "jou"};

int findIndex(string s, vector<string> &mar){
    for (int i=0; i<mar.size(); i++){
        if (s==mar[i]) return i;
    }
    return -1;
}

int main() {
    int n;
    cin >> n;
    getchar();  //吸收换行符
    string s;
    for (int i=0; i<n; i++){
        getline(cin, s);
        if (isdigit(s[0])){
            int k = stoi(s);
            if (k > 12){
                cout << mar2[k/13];
                if (k%13!=0) cout <<  " " << mar1[k%13];
            }
            else{
                cout << mar1[k];
            }
        }
        else{
            int num;
            if (s.size()>4){
                num = findIndex(s.substr(0,3), mar2) * 13 + findIndex(s.substr(4, 3), mar1);
            }
            else{
                num = findIndex(s, mar1);
                if (num==-1) num = findIndex(s, mar2) * 13;
            }
            cout << num;
        }
        cout << endl;
    }
    return 0;
}


通过短时倒谱(Cepstrogram)计算进行时-倒频析研究(Matlab代码实现)内容概要:本文主要介绍了一项关于短时倒谱(Cepstrogram)计算在时-倒频析中的研究,并提供了相应的Matlab代码实现。通过短时倒谱析方法,能够有效提取信号在时间与倒频率域的特征,适用于语音、机械振动、生物医学等领域的信号处理与故障诊断。文中阐述了倒谱析的基本原理、短时倒谱的计算流程及其在实际工程中的应用价值,展示了如何利用Matlab进行时-倒频图的可视化与析,帮助研究人员深入理解非平稳信号的周期性成与谐波结构。; 适合人群:具备一定信号处理基础,熟悉Matlab编程,从事电子信息、机械工程、生物医学或通信等相关领域科研工作的研究生、工程师及科研人员。; 使用场景及目标:①掌握倒谱析与短时倒谱的基本理论及其与傅里叶变换的关系;②学习如何用Matlab实现Cepstrogram并应用于实际信号的周期性特征提取与故障诊断;③为语音识别、机械设备状态监测、振动信号析等研究提供技术支持与方法参考; 阅读建议:建议读者结合提供的Matlab代码进行实践操作,先理解倒谱的基本概念再逐步实现短时倒谱析,注意参数设置如窗长、重叠率等对结果的影响,同时可将该方法与其他时频析方法(如STFT、小波变换)进行对比,以提升对信号特征的理解能力。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值