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 }
  • 相关阅读:
    正向代理/反向代理理解、Nginx概述、安装及配置详解
    项目部署问题:xftp无法连接服务器、Nginx403 Forbidden解决、nginx反向代理解决前端跨域问题
    Vue上传文件:ElementUI中的upload实现
    理解Vue的计算属性
    今天在CSDN看懂这个帖子,也是我的困惑,记录一下(过了三十的码农,你选择的是哪个,说出你的想法)
    WCF IIS上部署服务
    [转]WCF RESTful service and WebGrid in ASP.NET MVC 5
    WCF 与其它技术的比较
    Visual Studio Debug和Release的区别及obj的作用
    C# Json格式字符串
  • 原文地址:https://www.cnblogs.com/RRirring/p/4711611.html
Copyright © 2011-2022 走看看