| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 547 人关注过本帖
标题:hdu1015 结果正确不知道错在哪了 求指导
只看楼主 加入收藏
清尘
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2013-9-5
结帖率:66.67%
收藏
已结贴  问题点数:10 回复次数:4 
hdu1015 结果正确不知道错在哪了 求指导
题目;
=== Op tech briefing, 2002/11/02 06:42 CST ===
"The item is locked in a Klein safe behind a painting in the second-floor library. Klein safes are extremely rare; most of them, along with Klein and his factory, were destroyed in World War II. Fortunately old Brumbaugh from research knew Klein's secrets and wrote them down before he died. A Klein safe has two distinguishing features: a combination lock that uses letters instead of numbers, and an engraved quotation on the door. A Klein quotation always contains between five and twelve distinct uppercase letters, usually at the beginning of sentences, and mentions one or more numbers. Five of the uppercase letters form the combination that opens the safe. By combining the digits from all the numbers in the appropriate way you get a numeric target. (The details of constructing the target number are classified.) To find the combination you must select five letters v, w, x, y, and z that satisfy the following equation, where each letter is replaced by its ordinal position in the alphabet (A=1, B=2, ..., Z=26). The combination is then vwxyz. If there is more than one solution then the combination is the one that is lexicographically greatest, i.e., the one that would appear last in a dictionary."

v - w^2 + x^3 - y^4 + z^5 = target

"For example, given target 1 and letter set ABCDEFGHIJKL, one possible solution is FIECB, since 6 - 9^2 + 5^3 - 3^4 + 2^5 = 1. There are actually several solutions in this case, and the combination turns out to be LKEBA. Klein thought it was safe to encode the combination within the engraving, because it could take months of effort to try all the possibilities even if you knew the secret. But of course computers didn't exist then."

=== Op tech directive, computer division, 2002/11/02 12:30 CST ===

"Develop a program to find Klein combinations in preparation for field deployment. Use standard test methodology as per departmental regulations. Input consists of one or more lines containing a positive integer target less than twelve million, a space, then at least five and at most twelve distinct uppercase letters. The last line will contain a target of zero and the letters END; this signals the end of the input. For each line output the Klein combination, break ties with lexicographic order, or 'no solution' if there is no correct combination. Use the exact format shown below."
1 ABCDEFGHIJKL
11700519 ZAYEXIWOVU
3072997 SOUGHT
1234567 THEQUICKFROG
0 END
LKEBA
YOXUZ
GHOST
no solution
我的代码:
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
#include<string.h>
char s[5];
int comp(const void *a,const void *b);
int ss(__int64 m,char *str);
int main()
{
    __int64 m;
    char str[15];

    while(scanf("%I64d%s",&m,str),m||strcmp(str,"END"))
    {
        if(ss(m,str))
        {
            int i;
            for(i=0;i<5;i++)
                printf("%c",s[i]);
            printf("\n");
        }
        else
            printf("no solution\n");
   
    }
    return 0;
}
int comp(const void *a,const void *b)
{
    return *(char*)b-*(char*)a;
}
int ss(__int64 m,char *str)
{
    int len;
    int num[5];
    int i,j,k,l,n;
    int x;
    len=strlen(str);
    qsort(str,len,sizeof(char),comp);
    for(i=0;i<len;i++)
    {
        s[0]=str[i];
        for(j=0;j<len;j++)
        {
            if(i==j)
                continue;
            else
            {
                s[1]=str[j];
                for(k=0;k<len;k++)
                {
                    if(k==i||k==j)
                        continue;
                    else
                    {
                        s[2]=str[k];
                        for(l=0;l<len;l++)
                        {
                            if(l==i||l==j||l==k)
                                continue;
                            else
                            {
                                s[3]=str[l];
                                for(n=0;n<len;n++)
                                {
                                    if(n==i||n==j||n==k||n==l)
                                        continue;
                                    else
                                    {
                                        s[4]=str[n];
                                        for(x=0;x<5;x++)
                                            num[x]=s[x]+1-'A';
                                        if(num[0]-pow(num[1],2)+pow(num[2],3)-pow(num[3],4)+pow(num[4],5)==m)
                                        {
                                            return 1;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
        return 0;
}
搜索更多相关主题的帖子: research features painting library factory 
2013-09-12 20:14
天空编程
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:53
专家分:123
注 册:2013-7-5
收藏
得分:2 
哇噻!你的英语好厉害啊!
2013-09-12 20:34
jg658237
Rank: 7Rank: 7Rank: 7
来 自:青藏高原
等 级:黑侠
帖 子:224
专家分:529
注 册:2013-8-8
收藏
得分:2 
........................

武功再高也怕菜刀.
2013-09-12 22:24
youngdavid
Rank: 7Rank: 7Rank: 7
等 级:黑侠
帖 子:107
专家分:698
注 册:2012-9-24
收藏
得分:3 
题目能翻译成汉语吗
2013-09-12 23:19
liufashuai
Rank: 9Rank: 9Rank: 9
来 自:冥界-魔域-魂殿
等 级:蜘蛛侠
威 望:1
帖 子:370
专家分:1374
注 册:2012-6-22
收藏
得分:3 
可以简介一下不?英语表示有压力!

有一种落差是,你配不上自己的野心,也辜负了所受的苦难。






2013-09-12 23:28
快速回复:hdu1015 结果正确不知道错在哪了 求指导
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018999 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved