zoukankan      html  css  js  c++  java
  • HDU6213

    Chinese Zodiac

    Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
    Total Submission(s): 184    Accepted Submission(s): 135


    Problem Description

    The Chinese Zodiac, known as Sheng Xiao, is based on a twelve-year cycle, each year in the cycle related to an animal sign. These signs are the rat, ox, tiger, rabbit, dragon, snake, horse, sheep, monkey, rooster, dog and pig.
    Victoria is married to a younger man, but no one knows the real age difference between the couple. The good news is that she told us their Chinese Zodiac signs. Their years of birth in luner calendar is not the same. Here we can guess a very rough estimate of the minimum age difference between them.
    If, for instance, the signs of Victoria and her husband are ox and rabbit respectively, the estimate should be 2 years. But if the signs of the couple is the same, the answer should be 12 years.
     

    Input

    The first line of input contains an integer T (1T1000) indicating the number of test cases.
    For each test case a line of two strings describes the signs of Victoria and her husband.
     

    Output

    For each test case output an integer in a line.
     

    Sample Input

    3
    ox rooster
    rooster ox
    dragon dragon
     

    Sample Output

    8
    4
    12
     

    Source

     
     1 //2017-09-18
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <iostream>
     5 #include <algorithm>
     6 #include <map>
     7 
     8 using namespace std;
     9 
    10 map<string, int> mp;
    11 
    12 int main()
    13 {
    14     mp["rat"] = 1;
    15     mp["ox"] = 2;
    16     mp["tiger"] = 3;
    17     mp["rabbit"] = 4;
    18     mp["dragon"] = 5;
    19     mp["snake"] = 6;
    20     mp["horse"] = 7;
    21     mp["sheep"] = 8;
    22     mp["monkey"] = 9;
    23     mp["rooster"] = 10;
    24     mp["dog"] = 11;
    25     mp["pig"] = 12;
    26 
    27     int T;
    28     cin>>T;
    29     string str1, str2;
    30     while(T--){
    31         cin>>str1>>str2;
    32         int ans = ((mp[str2]-mp[str1])+12)%12;
    33         if(ans == 0)ans = 12;
    34         cout<<ans<<endl;
    35     }
    36 
    37     return 0;
    38 }
  • 相关阅读:
    Swift 对AFN框架的封装
    iOS开发中静态库制作 之.a静态库制作及使用篇
    iOS 地图定位及大头针的基本使用
    swt中改变树的字体及颜色的实现
    为什么很多程序员选择跳槽?
    用SWT做圆形控件
    JAVA简单编码规则
    swt中改变表格字体大小及颜色的实现
    使用JAVA的反射机制反射带有数组参数的私有方法
    我的GIT使用经历
  • 原文地址:https://www.cnblogs.com/Penn000/p/7542636.html
Copyright © 2011-2022 走看看