还是要细心啊,题目不难,历法转换。
AC吧,这么简单的题烧这么长时间。。。丢人了。。。。
#include <iostream> #include <string> #include <cstdlib> #include <cstdio> using namespace std; int getTotalDays(string&, string&, string&); string& turnHolly(int, string&); int main () { int iCount; cin >> iCount; cout << iCount << endl; string strDayHaab; string strMonthHaab; string strYearHaab; int iTotalDays; while (iCount --) { cin >> strDayHaab >> strMonthHaab >> strYearHaab; strDayHaab = strDayHaab.substr(0, strDayHaab.find(".")); iTotalDays = getTotalDays(strDayHaab, strMonthHaab, strYearHaab); string strResult = ""; cout << turnHolly(iTotalDays, strResult) << endl; } return 0; } int getTotalDays(string& strDayHaab, string& strMonthHaab, string& strYearHaab) { int iTotalDays = atoi(strDayHaab.c_str()); if ("pop" == strMonthHaab) { } else if ("no" == strMonthHaab) { iTotalDays += 1*20; } else if ("zip" == strMonthHaab) { iTotalDays += 2*20; } else if ("zotz" == strMonthHaab) { iTotalDays += 3*20; } else if ("tzec" == strMonthHaab) { iTotalDays += 4*20; } else if ("xul" == strMonthHaab) { iTotalDays += 5*20; } else if ("yoxkin" == strMonthHaab) { iTotalDays += 6*20; } else if ("mol" == strMonthHaab) { iTotalDays += 7*20; } else if ("chen" == strMonthHaab) { iTotalDays += 8*20; } else if ("yax" == strMonthHaab) { iTotalDays += 9*20; } else if ("zac" == strMonthHaab) { iTotalDays += 10*20; } else if ("ceh" == strMonthHaab) { iTotalDays += 11*20; } else if ("mac" == strMonthHaab) { iTotalDays += 12*20; } else if ("kankin" == strMonthHaab) { iTotalDays += 13*20; } else if ("muan" == strMonthHaab) { iTotalDays += 14*20; } else if ("pax" == strMonthHaab) { iTotalDays += 15*20; } else if ("koyab" == strMonthHaab) { iTotalDays += 16*20; } else if ("cumhu" == strMonthHaab) { iTotalDays += 17*20; } else if ("uayet" == strMonthHaab) { iTotalDays += 18*20; } else { cout << "Month count wrong!" << endl; } iTotalDays += 365 * atoi(strYearHaab.c_str()); return iTotalDays; } string& turnHolly(int iTotalDays, string& strR) { char cTemp[32]; sprintf(cTemp, "%d", iTotalDays % 260 % 13 + 1); strR = string(cTemp); switch((iTotalDays % 260) % 20) { case 0: strR.insert(strR.size(), " imix "); break; case 1: strR.insert(strR.size(), " ik "); break; case 2: strR.insert(strR.size(), " akbal "); break; case 3: strR.insert(strR.size(), " kan "); break; case 4: strR.insert(strR.size(), " chicchan "); break; case 5: strR.insert(strR.size(), " cimi "); break; case 6: strR.insert(strR.size(), " manik "); break; case 7: strR.insert(strR.size(), " lamat "); break; case 8: strR.insert(strR.size(), " muluk "); break; case 9: strR.insert(strR.size(), " ok "); break; case 10: strR.insert(strR.size(), " chuen "); break; case 11: strR.insert(strR.size(), " eb "); break; case 12: strR.insert(strR.size(), " ben "); break; case 13: strR.insert(strR.size(), " ix "); break; case 14: strR.insert(strR.size(), " mem "); break; case 15: strR.insert(strR.size(), " cib "); break; case 16: strR.insert(strR.size(), " caban "); break; case 17: strR.insert(strR.size(), " eznab "); break; case 18: strR.insert(strR.size(), " canac "); break; case 19: strR.insert(strR.size(), " ahau "); break; } sprintf(cTemp, "%d", (int)(iTotalDays / 260)); strR += string(cTemp); return strR; }
发表评论
-
POJ 1010 解题报告 STAMPS
2011-12-18 21:15 1646考察多判。 遍历所有组合,取出最好组合。 上代码。 ... -
POJ 1009 解题报告 Edge Detection
2011-12-18 21:13 30591009是痛苦的一题啊 ... -
POJ 1007 解题报告 DNA Sorting
2011-12-15 17:43 942#include <iostream> # ... -
POJ 1006 解题报告 Biorhythms
2011-12-15 17:39 958同理小学生计算题? 还是我没想到什么? #inc ... -
POJ 1005 解题报告 I Think I Need a Houseboat
2011-12-15 17:36 849好吧,小朋友的数学题。 #include <io ... -
POJ 1004 解题报告 Financial Management
2011-12-15 17:34 3087超水一题。 #include <iostream ... -
POJ 1003 解题报告 Hangover
2011-12-15 17:32 1101简单题。 注意不要重复计算。 使用二分查找的思想。 ... -
POJ 1002 解题报告 487-3279
2011-11-25 15:53 1017典型的字符串处理问题。 刚开始用的vector,果断超时。题 ... -
POJ 1001 解题报告 Exponentiation
2011-11-25 15:15 1602高精度浮点数计算。 花了我整整一天时间才写好,POJ ...
相关推荐
【POJ1008-Maya Calendar.doc】:这个文件可能是解题报告,详细介绍了问题的分析、算法设计思路、代码实现过程、测试用例和可能的优化方案。阅读这个文档可以获取更全面的解题过程和思考。 总的来说,解答POJ1008-...
poj 3414解题报告poj 3414解题报告poj 3414解题报告poj 3414解题报告
poj 1012解题报告poj 1012解题报告poj 1012解题报告poj 1012解题报告
poj 2329解题报告poj 2329解题报告poj 2329解题报告poj 2329解题报告
poj 1440解题报告 poj 1440解题报告 poj 1440解题报告 poj 1440解题报告
poj 3083解题报告poj 3083解题报告poj 3083解题报告poj 3083解题报告
For religious purposes, the Maya used another calendar in which the year was called Tzolkin (holly year). The year was divided into thirteen periods, each 20 days long. Each day was denoted by a pair ...
poj 1659解题报告poj 1659解题报告poj 1659解题报告poj 1659解题报告
poj 3720解题报告poj 3720解题报告poj 3720解题报告poj 3720解题报告
这个“北大poj解题报告”包含了作者在使用POJ平台解题过程中的学习总结和经验分享,旨在帮助软件工程专业的学生提升编程能力和算法理解。 解题报告通常会涵盖以下几个方面: 1. **基础算法讲解**:解题报告中可能...
poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题报告poj 解题...
### poj1691解题报告 #### 题目信息 - **题目名称**:Painting A Board - **时间限制**:1S - **内存限制**:1000K - **提交总数**:62 - **通过总数**:35 - **来源**:...
【ACM竞赛与北大POJ解题报告】 在编程竞赛领域,ACM(国际大学生程序设计竞赛,简称ACM/ICPC)是一项极具影响力的比赛,它挑战参赛者的算法设计、问题理解和快速编码能力。北京大学(Peking University)的在线判题...
【标题】"80道POJ解题报告"所涉及的知识点主要集中在ACM(国际大学生程序设计竞赛)和POJ(编程Online Judge系统)上。POJ是北京大学主办的一个在线编程竞赛平台,广泛用于训练和提升程序员的算法设计与实现能力。80...
【北大ACM_POJ_解题报告】是北京大学ACM在线评测系统POJ的解题资源集合,这个压缩包包含了对POJ平台上的各种类型ACM竞赛题目的详细解答。ACM,全称国际大学生程序设计竞赛(International Collegiate Programming ...
【POJ 1316 解题报告】 本题源自北京大学举办的ACM竞赛,题号为POJ 1316,主要涉及算法设计和数组的应用。题目要求找到10000以内的所有self-number,并输出它们。Self-number是一个特殊的整数序列,它的定义是该数...
《POJ 2392解题报告:高效计算最高堆积高度》 本文将深入解析POJ 2392这个编程题目,该题目要求利用给定的不同高度、耐压性和数量的block,来确定能够堆叠出的最大高度。解决这个问题的关键在于运用排序和动态规划...
这篇解题报告主要介绍了如何解决POJ2828这个编程题目。该题目涉及的数据结构是区间树(Interval Tree),这是一种用于高效处理区间查询和修改的树形数据结构。在这个问题中,我们需要根据输入的元素位置和值,构建一...
ACM Poj Pku 解题报告答案 打包 下载 600多题 史上最全 不是网上乱传的200多题,更不是100多题就挂着10分才能下的题 下了这个 大家也不要浪费分数去下载其它版本的了,基本上都有 共享 一起进步 中国加油 ACMer...