Chinese Zodiac

来源:互联网 发布:华为揽阅m2青春版改mac 编辑:程序博客网 时间:2024/04/29 07:06

Chinese Zodiac

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

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 (1≤T≤1000) 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

 

题意:计算生肖差的年份

思路:想不起来map怎么用了 实在不行就用最简单的也能过。

#include <cstdio>

#include <cstring>

#include <iostream>

#include <algorithm>

#include <string>

using namespace std;

int hanshu(string s)

{

    if(s=="rat")

        return 1;

    if(s=="ox")

        return 2;

    if(s=="tiger")

        return 3;

    if(s=="rabbit")

        return 4;

    if(s=="dragon")

        return 5;

    if(s=="snake")

        return 6;

    if(s=="horse")

        return 7;

    if(s=="sheep")

        return 8;

    if(s=="monkey")

        return 9;

    if(s=="rooster")

        return 10;

    if(s=="dog")

        return 11;

    if(s=="pig")

        return 12;

}

int main()

{

    int n;

    scanf("%d",&n);

    while(n--)

    {

        string a,b;

        cin>>a>>b;

        if(hanshu(b)>hanshu(a))

            printf("%d\n",hanshu(b)-hanshu(a));

        else

            printf("%d\n",hanshu(b)+12-hanshu(a));

    }

    return 0;

}

 

原创粉丝点击