BNU20832:Calculating Yuan Fen(模拟)

Yuanfen is a Chinese term that is hard to understand for people in other countries. Roughly speaking, yuanfen means the pre-determined "binding force" that links two people (usually two lovers) together. Although it is a blind faith, many people, especially girls like to calculate it.

Unfortunately, my girlfriend is one of them. One day, she asked me, "Sweetie, shall we find out our yuanfen?" Oh, I really hate that question, but I cannot reject it... Luckily, I'm a programmer, so the only thing I need to do is to find a seemingly good algorithm and write a yuanfen calculator. After several hours' searching in the web, I decided to implement the following popular yuanfen algorithm:

Step 1: Pick up the name abbreviations of the couple and concatenate them. For example, if the couple named Jiang Yun Fan and Tang Yu Rou, the concatenation of abbreviations is JYFTYR.

Step 2: Replace each letter with a number string. For some predefined positive integer ST, replace A with ST, and B with ST+1, C with ST+2, ..., Z with ST+25. For example, if ST=81, A should be replaced with 81, B should be replaced with 82, ..., Z will be replaced by 106. In the case above, JYFTYR will be replaced by 901058610010598.

Step 3: Repeat the following: add up each pair of consecutive digits, and write down the last digit of each sum. It's not difficult to see that each time we perform this action, the number of digits is decreased by 1. When the number string is exactly 100, or has no more than 2 digits, the process ends. The current number is the yuanfen between the couple. In the case above, the process is as follows:

901058610010598
91153471011547
0268718112691
284589923850
02937815135
2120596648
332545202
65799722
1268694
384453
12898
3077
374
01

So if ST=81, Jiang Yun Fan and Tang Yu Rou's yuanfen is only 1!

Too bad! I know my girlfriend very well. I know that even the result is as high as 99, she'll still be unhappy. Could you find the value of ST such that the yuanfen between my sweetheart and I is 100?

Input

There will be at most 50 test cases. Each case contains a string of at least four and at most ten capital letters.

Output

For each test case, print the smallest positive integer ST (note that ST should not be zero). If it does not exist or larger than 10000, print a string ":(" (without quotes.

Sample Input

JYFTYR
ABCDEF
YTHHLS
YTHLML
LYXM
JYFLY
CBTZX
LXYZLE
LXYLYR
QWERTY

Output for Sample Input

148
634
:(
910
96
4284
631
850
149
2277
简单模拟题,题目意思已经说得很清楚了,直接暴力模拟步骤即可
 
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;

char str[15];
char num[1000000];
char tem[1000000];

int main()
{
    while(~scanf("%s",str))
    {
        int len = strlen(str);
        int i,l,j,k,n;
        for(i = 1; i<=10000; i++)//枚举所有可能情况
        {
            l = 0;
            for(j = 0; j<len; j++)
            {
                n = i+(str[j]-'A');//求出每个字母价值
                int t = n,a[5],ll = 0;
                while(n)
                {
                    a[ll++] = n%10;
                    n/=10;
                }
                for(k = ll-1;k>=0;k--)//将价值放入数组
                num[l++] = a[k]+'0';
            }
            num[l] = '\0';
            while(l>3)
            {
                for(j = 1;j<l;j++)//每两位相加
                {
                    tem[j-1] = (num[j]-'0'+num[j-1]-'0')%10+'0';
                }
                l--;//位数减一
                tem[l] = '\0';
                strcpy(num,tem);
            }
            if(l == 3 && num[0] == '1' && num[1] == '0' && num[2] == '0')//缘分为100输出
            {
                printf("%d\n",i);
                break;
            }
        }
        if(i>10000)
        printf(":(\n");
    }

    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值