• 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;
    }
    

      

  • 相关阅读:
    二分和牛顿法实现开根号
    leetcode 44. 通配符匹配
    leetcode 91. 解码方法
    leetcode 236. 二叉树的最近公共祖先
    leetcode 39. 组合总数
    leetcode:146. LRU缓存机制
    leetcode:124. 二叉树中的最大路径和
    二叉树前序遍历,中序遍历,后序遍历以及层次遍历实现
    leetcode: 4. 寻找两个有序数组的中位数
    Leetcode: 43. 接雨水
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/9529067.html
Copyright © 2020-2023  润新知