Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 3277 | Accepted: 1741 |
Description
v - w2 + x3 - y4 + z5 = target
"For example, given target 1 and letter set ABCDEFGHIJKL, one possible solution is FIECB, since 6 - 92 + 53 - 34 + 25 = 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."
"Develop a program to find Klein combinations in preparation for field deployment. Use standard test methodology as per departmental regulations.
Input
Output
Sample Input
1 ABCDEFGHIJKL 11700519 ZAYEXIWOVU 3072997 SOUGHT 1234567 THEQUICKFROG 0 END
Sample Output
LKEBA YOXUZ GHOST no solution
Source
Regionals 2002 >> North America - Mid-Central USA
问题链接:UVALive2536 POJ1248 HDU1015 ZOJ1403 Safecracker
问题简述:给一个密码值,给一个字符串,找出6个字符使得经过指定的运算之后等于密码值,输出这些字符。
问题分析:这个问题用暴力法来解。
程序说明:(略)
题记:(略)参考链接:(略)
AC的C++语言程序如下:
/* UVALive2536 POJ1248 HDU1015 ZOJ1403 Safecracker */ #include <iostream> #include <algorithm> #include <string> #include <stdio.h> using namespace std; bool cmp(char a,char b) { return a > b; } int calc(int v,int w,int x,int y,int z) { return v - w*w + x*x*x - y*y*y*y + z*z*z*z*z; } void solve(int target, string& s) { int n = s.length(); for(int z=0; z<n; z++) { for(int y=0; y<n; y++) { if(y == z) continue; for(int x=0; x<n; x++) { if(x == z || x == y) continue; for(int w=0; w<n; w++) { if(w == z || w == y || w == x) continue; for(int v=0; v<n; v++) { if(v == z || v == y || v == x || v == w) continue; if(calc(s[z]-'A'+1, s[y]-'A'+1, s[x]-'A'+1, s[w]-'A'+1, s[v]-'A'+1) == target) { printf("%c%c%c%c%c\n", s[z], s[y], s[x], s[w], s[v]); return ; } } } } } } printf("no solution\n"); } int main() { int target; string s; while(cin >> target >> s && target) { sort(s.begin(), s.end(), cmp); solve(target, s); } return 0; }