zoukankan      html  css  js  c++  java
  • ZOJ 1403 F-Safecracker

    https://vjudge.net/contest/67836#problem/F

    "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

    时间复杂度:$O(C_n^5 * A_5^5)$

    题解:dfs

    代码:

    #include <bits/stdc++.h>
    using namespace std;
    
    int tar, len;
    char a[20];
    int visi[20];
    char res[10];
    char tmp[10];
    
    int debug(char *s) {
        double sum = 0;
        for(int i = 0; i < 5; i += 2)  {
            sum += pow(double(s[i] - 'A' + 1), double(i + 1));
        }
        for(int i = 1; i < 5;i += 2) {
            sum -= pow(double(s[i] - 'A' + 1), double(i + 1));
        }
        return sum;
    }
    
    void dfs(int step) {
        if(step == 5) {
            tmp[5] = '';
            if(debug(tmp) == tar) {
                 if(strcmp(tmp, res) > 0)
                     strcpy(res, tmp);
            }
            return ;
        }
        for(int i = 0; i < len; i ++) {
           if(!visi[i]) {
               tmp[step] = a[i];
               visi[i] = 1;
               dfs(step + 1);
               visi[i] = 0;
           }
        }
    }
    
    int main() {
        while(scanf("%d %s", &tar, a)) {
            if(tar == 0 && strcmp(a, "END") == 0)
                break;
            memset(visi, 0, sizeof(visi));
            strcpy(res, "@");
            len = strlen(a);
    
            for(int i = 0; i < len; i ++) {
                visi[i] = 1;
                tmp[0] = a[i];
                dfs(1);
                visi[i] = 0;
            }
    
            if(strcmp(res, "@") == 0)
                printf("no solution
    ");
            else
                printf("%s
    ", res);
        }
        return 0;
    }
    

      

  • 相关阅读:
    ExtJS4 动态生成grid出口excel(纯粹的接待)
    oracle10g获得Date类型字段无分,秒的解决方案!
    ubuntu13.10 下一个 g++和gcc 4.8不兼容的问题不能被安装
    简单的导航
    Duanxx的C++学习 : 数字转换String
    图widget--jqplot样品和参数描述的简单演示
    m_Orchestrate learning system---三十、项目中的dist文件一般是做什么的
    开放windows服务器端口-----以打开端口8080为例
    phpstudy一个域名配置两个网站(一个是thinkphp5,一个是原生php)
    双向绑定的具体应用场景有哪些
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/9529067.html
Copyright © 2011-2022 走看看