| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 540 人关注过本帖
标题:hdu1015 结果正确不知道错在哪了 求指导
只看楼主 加入收藏
清尘
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2013-9-5
结帖率:66.67%
收藏
 问题点数:0 回复次数:0 
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

大意是:
在一个字符串中挑选出五个字符(均是大写),其中A=1,一次类推Z=26;
五个字符满足公式v - w^2 + x^3 - y^4 + z^5 = target;
但要最大的那个(即xyz>xyw按字典排序),
 我的代码:
 #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-13 17:53
快速回复:hdu1015 结果正确不知道错在哪了 求指导
数据加载中...
 
   



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

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