杭电 HDU ACM 1015 Safecracker (dfs 枚举排列)

一个网友给我发的这个题目,用dfs枚举全排列即可,需要注意的是选出的五个字母可能之间有重复的,vis数组应该标记其下标,而不是值。

SafecrackerTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 10614Accepted Submission(s): 5431

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 ABCDEFGHIJKL11700519 ZAYEXIWOVU3072997 SOUGHT1234567 THEQUICKFROG0 END

Sample Output

LKEBAYOXUZGHOSTno solution

Source

AC:/*=============================================================================##Author: liangshu – cbam ##QQ : 756029571 ##School : 哈尔滨理工大学 ##Last modified: 2015-08-27 19:51##Filename: C.cpp##Description: #The people who are crazy enough to think they can change the world, are the ones who do ! =============================================================================*/##include<iostream>#include<sstream>#include<algorithm>#include<cstdio>#include<string.h>#include<cctype>#include<string>#include<cmath>#include<vector>#include<stack>#include<queue>#include<map>#include<set>using namespace std;typedef long long LL;bool vis[50];char cnt[50];char dic[50];LL tar;bool cmp(int a, int b){return a > b;}bool dfs(int k){if(k == 6){int v = dic[1] – 'A' + 1;int w = dic[2] – 'A' + 1;int x = dic[3] – 'A' + 1;int y = dic[4] – 'A' + 1;int z = dic[5] – 'A' + 1;LL res = v – w * w + x * x * x – y * y * y * y + z * z * z * z * z;if(res == tar)return 1;return 0;}for(int i = 0; i < strlen (cnt); i++){if(!vis[i]){dic[k] = cnt[i];vis[i] = 1;if(dfs(k + 1))return 1;vis[i] = 0;}} return 0;}int main(){while(scanf("%d%s",&tar, cnt) != EOF){if(tar == 0 && !strcmp("END",cnt)){return 0;}memset(vis, 0, sizeof(vis));sort(cnt, cnt + strlen(cnt), cmp);if(dfs(1)){for(int i = 1; i <= 5; i++){cout<<dic[i];}cout<<endl;}elsecout<<"no solution"<<endl;}return 0;}

版权声明:本文为博主原创文章,,未经博主允许不得转载。

让情谊在笑声中升腾,当朋友遇到了难题的时候,

杭电 HDU ACM 1015 Safecracker (dfs 枚举排列)

相关文章:

你感兴趣的文章:

标签云: