1100 Mars Numbers (20分)

这个考察的是map的使用吧,字符串映射数字。

附本人AC代码:

#include<iostream>
#include<map>
#include<cctype>
#include<string>
using namespace std;
map<string, int>Ma1,Ma2;
string name1[13] = { "tret","jan","feb","mar","apr","may","jun","jly","aug","sep","oct","nov","dec" };
string name2[13] = { "tret","tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mer", "jou" };
int main() {
	for (int i = 0; i < 13; i++) {
		Ma1[name1[i]] = i;
		Ma2[name2[i]] = 13*i;
	}
	int N;
	string tmp;
	scanf("%d", &N);
	cin.ignore();
	for (int i = 0; i < N; i++) {
		getline(cin,tmp);
		if (isdigit(tmp[0])) {
			int t = stoi(tmp);
			if (t / 13 != 0)printf("%s", name2[t / 13].c_str());
			if (t / 13 != 0 && t % 13 != 0)printf(" ");
			if(t%13!=0||t/13==0)printf("%s", name1[t % 13].c_str());
			printf("\n");
		}
		else {
			int ans = 0;
			if (tmp.find(' ') != tmp.npos) {
				ans += Ma2[tmp.substr(0, tmp.find(' '))] + Ma1[tmp.substr(tmp.find(' ') + 1)];
				printf("%d\n", ans);
			}
			else if (Ma1[tmp]!= 0)printf("%d\n", Ma1[tmp]);
			else printf("%d\n", Ma2[tmp]);
		}
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值