本题地址: http://www.luogu.org/problem/show?pid=1603
题目背景
根据斯诺登事件出的一道水题
题目描述
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个单词的句子。
输出格式:
一个整型变量(密码)。
输入输出样例
输入样例#1:
Black Obama is two five zero .
输出样例#1:
425
题解
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
long long cnt=0,ans[6],sum=0;
void f(string &a)
{
if(a=="one"||a=="a"||a=="another"||a=="first") ans[cnt]=1,cnt++;
else if(a=="two"||a=="both"||a=="second") ans[cnt]=4,cnt++;
else if(a=="three"||a=="third") ans[cnt]=9,cnt++;
else if(a=="four") ans[cnt]=16,cnt++;
else if(a=="five") ans[cnt]=25,cnt++;
else if(a=="six") ans[cnt]=36,cnt++;
else if(a=="seven") ans[cnt]=49,cnt++;
else if(a=="eight") ans[cnt]=64,cnt++;
else if(a=="nine") ans[cnt]=81,cnt++;
else if(a=="eleven") ans[cnt]=21,cnt++;
else if(a=="twelve") ans[cnt]=44,cnt++;
else if(a=="thirteen") ans[cnt]=69,cnt++;
else if(a=="forteen") ans[cnt]=96,cnt++;
else if(a=="fifteen") ans[cnt]=25,cnt++;
else if(a=="sixteen") ans[cnt]=56,cnt++;
else if(a=="seventeen") ans[cnt]=89,cnt++;
else if(a=="eighteen") ans[cnt]=24,cnt++;
else if(a=="nineteen") ans[cnt]=61,cnt++;
}
int main()
{
string c2[6];
for(int i=0;i<6;i++) cin>>c2[i];
for(int i=0;i<6;i++)
{
int j=c2[i].find('.',0);
if(j>=0)
{
c2[i]=c2[i].erase(j,1);
}
f(c2[i]);
}
sort(ans,ans+cnt);
for(int i=0;i<cnt;i++)
sum=sum*100+ans[i];
printf("%lld",sum);
return 0;
}
水题……判断一下就完事……
因为懒得敲去搞了个题解过来,希望洛谷管理员别打我 >﹏<
要注意数据范围,然后好像没话说了……
根据斯诺登事件创作的一道趣味编程题,要求使用C++编写程序来解析一条特殊信息并生成密码。通过识别特定英文词汇对应的数字,计算其平方后取模,并组合得到最终密码。
332

被折叠的 条评论
为什么被折叠?



