博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj Safecracker
阅读量:6805 次
发布时间:2019-06-26

本文共 3606 字,大约阅读时间需要 12 分钟。

hot3.png

/**C:Safecracker查看提交统计提问总时间限制: 1000ms内存限制: 65536kB描述"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 andwrote 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, usuallyat the beginning of sentences, and mentions one or more numbers. Five of the uppercase letters form the combination that opens thesafe. By combining the digits from all the numbers in the appropriate way you get a numeric target. (The details of constructing thetarget 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 ismore than one solution then the combination is the one that is lexicographically greatest, i.e., the one that would appear last in adictionary."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 actuallyseveral solutions in this case, and the combination turns out to be LKEBA. Klein thought it was safe to encode the combination within theengraving, 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 consists of one or more lines containing a positive integer target less than twelve million, a space, then at least five and atmost 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 unique Klein combination, or 'no solution' if there is no correct combination. Use the exact format shown below."样例输入1 ABCDEFGHIJKL11700519 ZAYEXIWOVU3072997 SOUGHT1234567 THEQUICKFROG0 END样例输出LKEBAYOXUZGHOSTno solution*/#include 
#include
#include
#include
#include
#include
#include
using namespace std;int num = 0;char tep[12];int let[12] = {0};bool used[12] = {0};int ans[6] = {0};int mark = 0;bool judge(int a, int b, int c, int d, int e, int f){ return a - b*b+ c*c*c- d*d*d*d+ e*e*e*e*e == f;}struct gr{ bool operator()(const int &a, const int &b)const { return a > b; }};void choose(int a, int b){ if(mark) return; if(a == 5) { if(judge(ans[0], ans[1],ans[2],ans[3],ans[4], num)) { for(int i = 0; i < 5; ++i) printf("%c", ans[i] + 'A' - 1); printf("\n") ; //for(int i = 0; i < 5; ++i) printf("%d", ans[i]); //printf("\n") ; mark = 1; } return; } for(int j = 0; j < b; ++j) { if(mark) return; if(!used[j]) { used[j] = 1; ans[a] = let[j]; choose(a + 1, b); used[j] = 0; } } return;}int main(){ while(true) { mark = 0; scanf("%d %s", &num, tep); int t = strlen(tep); //printf("%d\n", t); if(t < 5) break; for(int i = 0; i < t; ++i) let[i] = tep[i] - 'A' + 1; sort(let, let + t, gr() ); for(int i = 0; i < t; ++i) //printf("%d ", let[i]); choose(0, t); if(!mark) printf("no solution\n"); } return 0;}

转载于:https://my.oschina.net/locusxt/blog/135179

你可能感兴趣的文章
CEPH Cache Tiering
查看>>
Oracle 11g新特性之--Server Result Cache
查看>>
Oracle中的ORA-01548: active rollback segment '_SYSSMU1$' found
查看>>
AngularJs $anchorScroll、$controller、$document
查看>>
Microsoft资源
查看>>
WordPress 永久链接或固定链接设置技巧
查看>>
数据结构之线性表
查看>>
在PPT中插入FLASH遇到的系列问题
查看>>
XSS研究4-来自外部的XSS攻击的防范
查看>>
Spring知识点总结-1
查看>>
微软私有云分享(R2)21 BMC提升B格
查看>>
MDSF:如何使用GMF来做TOGAF建模工具
查看>>
Spring Security简介
查看>>
打造一流的研发中心
查看>>
MCollective架构篇3-Puppet插件的部署及测试
查看>>
配置GNS使用CRT连接
查看>>
Java:集合类性能分析
查看>>
cms无法登陆
查看>>
JavaScript中事件处理
查看>>
VSTO 向office文档中插入内容
查看>>