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

      

  • 相关阅读:
    送走2015,迎来2016
    Android-Volley网络通信框架(StringRequest &amp; JsonObjectRequest)
    Mac上配置 Ruby on Rails和Git
    学习Javascript闭包(Closure)
    cocos2d-x 学习资源整理(持续更新...)
    android自己定义刷新类控件
    awk条件语句
    Leetcode 236 Lowest Common Ancestor of a Binary Tree
    Linux查看当前正在执行的进程
    Thinking in UML 学习笔记(三)——UML核心视图之类图
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/9529067.html
Copyright © 2011-2022 走看看