zoukankan      html  css  js  c++  java
  • HDU-1015(暴力)

    Safecracker

    Problem Description
    === 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."
     
    Sample Input
    1 ABCDEFGHIJKL 11700519 ZAYEXIWOVU 3072997 SOUGHT 1234567 THEQUICKFROG 0 END
     
    Sample Output
    LKEBA YOXUZ GHOST no solution
     
     
    分析:因为最多只有12个字母,所以几个for循环暴力找就行了,注意要按字典序大的输出,还有几个小优化。
     
     1 #include <cstdio>
     2 #include <cmath>
     3 #include <cstring>
     4 #include <ctime>
     5 #include <iostream>
     6 #include <algorithm>
     7 #include <set>
     8 #include <vector>
     9 #include <sstream>
    10 #include <queue>
    11 #include <typeinfo>
    12 #include <fstream>
    13 #include <map>
    14 #include <stack>
    15 using namespace std;
    16 #define INF 100000
    17 typedef long long ll;
    18 const int maxn=10010;
    19 char letter[maxn];
    20 int vis[27];
    21 int main()
    22 {
    23     int v;
    24     while(scanf("%d%s",&v,letter)){
    25         if(v==0&&!strcmp(letter,"END")) break;
    26         memset(vis,0,sizeof(vis));
    27         int n=strlen(letter);
    28         for(int i=0;i<n;i++){
    29             vis[i]=letter[i]-'A'+1;
    30         }
    31         sort(vis,vis+n);
    32         int flag=0;
    33         for(int i=n-1;i>=0;i--){
    34             if(flag) break;
    35             for(int j=n-1;j>=0;j--){
    36                 if(flag) break;
    37                 if(j==i) continue;
    38                 for(int k=n-1;k>=0;k--){
    39                     if(flag) break;
    40                     if(k==i||k==j) continue;
    41                     for(int l=n-1;l>=0;l--){
    42                         if(flag) break;
    43                         if(l==i||l==j||l==k) continue;
    44                         for(int h=n-1;h>=0;h--){
    45                             if(h==l||h==k||h==j||h==i) continue;
    46                             if(vis[i]-pow(vis[j],2)+pow(vis[k],3)-pow(vis[l],4)+pow(vis[h],5)==v){
    47                                 printf("%c%c%c%c%c
    ",vis[i]-1+'A',vis[j]-1+'A',vis[k]-1+'A',vis[l]-1+'A',vis[h]-1+'A');
    48                                 flag=1;
    49                                 break;
    50                             }
    51                         }
    52                     }
    53                 }
    54             }
    55 
    56         }
    57         if(!flag) printf("no solution
    ");
    58     }
    59     return 0;
    60 }
  • 相关阅读:
    11月30日总结数据显示代码
    11月25日总结
    11月26日总结生成数据前端代码
    11月27日总结生成数据字典后端servlet层
    11月23日后端
    11月28日总结生成数据字典dao层
    11月29日生成数据字典damain层
    今日总结
    ARouter 在多 module 项目中实战
    ARouter 拦截器之多 module 独立运行
  • 原文地址:https://www.cnblogs.com/RRirring/p/4711611.html
Copyright © 2011-2022 走看看