题目背景
根据斯诺登事件出的一道水题
题目描述
题目描述
2013年X月X日,俄罗斯办理了斯诺登的护照,于是他混迹于一架开往委内瑞拉的飞机。但是,这件事情太不周密了,因为FBI的间谍早已获悉他的具体位置——但这不是最重要的——最重要的是如果要去委内瑞拉,那么就要经过古巴,而经过古巴的路在美国的掌控之中。丧心病狂的奥巴马迫降斯诺登的飞机,搜查时却发现,斯诺登杳无踪迹。但是,在据说是斯诺登的座位上,发现了一张纸条。纸条由纯英文构成:Obama is a two five zero.(以"."结束输出,只有6个单词+一个句号,句子开头如没有大写亦为合法)这句话虽然有点无厘头,但是警官陈珺骛发现这是一条极其重要的线索。他在斯诺登截获的一台笔记本中找到了一个C++程序,输入这条句子后立马给出了相对应的密码。陈珺鹜高兴得晕了过去,身为警官的你把字条和程序带上了飞机,准备飞往曼哈顿国际机场,但是在飞机上检查的时候发现——程序被粉碎了!飞机抵达华盛顿只剩5分钟,你必须在这5分钟内编写(杜撰)一个程序,免受上司的10000000000%10大板。破译密码的步骤如下:
(1)找出句子中所有用英文表示的数字(≤20),列举在下:
正规:one two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty
非正规:a both another first second third
(2)将这些数字平方后%100,如00,05,11,19,86,99。
(3)把这些两位数按数位排成一行,组成一个新数,如果开头为0,就去0。
(4)找出所有排列方法中最小的一个数,即为密码。
// 数据已经修正 By absi2011 如果还有问题请联系我
输入输出格式
输入格式:
一个含有6个单词的句子。
输出格式:
一个整型变量(密码)。
输入输出样例
Black Obama is two five zero .
425
#include<cstdio> #include<iostream> #include<algorithm> using namespace std; int db[30],a[10],cur=0; int Hash(string s){ long long ans=1313; const int seek=131; int temp=s.size(); for(int i=0;i<temp;i++){ if(‘A‘<=s[i]&&s[i]<=‘Z‘) s[i]=s[i]-‘A‘+‘a‘; ans=(ans-s[i])*seek; } return ans&0x3fff; } int main(){ db[1]=Hash("one");db[2]=Hash("two");db[3]=Hash("three"); db[4]=Hash("four");db[5]=Hash("five");db[6]=Hash("six"); db[7]=Hash("seven");db[8]=Hash("eight");db[9]=Hash("nine"); db[10]=Hash("ten");db[11]=Hash("eleven");db[12]=Hash("twelve"); db[13]=Hash("thirteen");db[14]=Hash("fourteen");db[15]=Hash("fifteen"); db[16]=Hash("sixteen");db[17]=Hash("seventeen");db[18]=Hash("eighteen"); db[19]=Hash("nineteen");db[20]=Hash("twenty");db[21]=Hash("a"); db[22]=Hash("both");db[23]=Hash("another");db[24]=Hash("first"); db[25]=Hash("second");db[26]=Hash("third"); string t; for(int i=1;i<=6;i++){ cin>>t; int temp=Hash(t); for(int j=1;j<=26;j++) if(db[j]==temp){ if(j<=20) a[++cur]=j*j%100; else{ if(j==21||j==23||j==24){ a[++cur]=1;break; } if(j==22||j==25) { a[++cur]=4;break; } if(j==26) { a[++cur]=9;break; } } } } if(cur==0){ cout<<0;return 0; } sort(a+1,a+cur+1); for(int i=1;i<=cur;i++){ if(a[i]<10&&i!=1) cout<<0<<a[i]; else cout<<a[i]; } }