版权声明:本文为博主原创文章,未经博主同意不得转载。 https://blog.csdn.net/svitter/article/details/24270265

本文出自:http://blog.csdn.net/svitter。转载请注明出处。

原题:点击打开链接

晨阳哥一同讨论了一下这个题目=
=最终在今晚AC了。

这个题目能够说是RSA加密算法的变种。。

考虑997是素数,那么符合欧拉定理。然后想到费马小定理 m ^ 996 MOD 997 = 1;

由于一般的RSA解密算法都是C^d mod 997 = m 这样的形式,苦思冥想了好久解密算法,仍然没有得到解决。

最后最终大彻大悟的明确:

呵呵,你想多了。。这个题目能够用打表过- -

要注意的问题:

1.加password与原码是要一一相应,在原码中已经标出。

2.计算MOD幂的时候使用二分算法,假设不使用必定超时(n 能够取到  10 ^ 9)。这个算法根据pow算法得出。

/*author : Vit/csdn
*from: http://blog.csdn.net/svitter
*if you love it, please show the original site*/ #include <iostream>
#include <stdio.h>
#include <string.h> using namespace std; #define lln long long int char str[1000010];
char key[1001];
lln ch[127];
lln n;
lln ans, tt, temp; bool get(lln &c)
{
temp = c, ans = 1, tt = n;
while(tt)
{
if(tt &1)
ans = (ans * temp) % 997;
temp = temp * temp % 997;
tt = tt >> 1;
}
if(ch[c] == -1)
ch[c] = ans;
} bool init()
{
lln i;
memset(ch, -1, sizeof(ch));
memset(key, '\0', sizeof(key));
for(i = 32; i < 127; i++)
{
if(get(i))
continue;
else
return false;
} for(i = 32; i < 127; i++)
{
lln &tmp = ch[i];
if(key[tmp] == '\0')//检查码值同样的情况
key[ch[i]] = (char)i;
else
{
return false;
}
}
return true;
} void ace()
{
lln c, cur;
lln length;
lln i, l;
char temp[400000];
bool isstr;
cin >> c;
while(c--)
{
while(cin >> n)
{
memset(str, '\0', sizeof(str));
scanf("%s", str);
if(init())
{
l = 0;
isstr = 1;
//cout << key[590] << endl;
length = strlen(str);
for(i = 0; i < length; i += 3)
{
cur = (str[i]-'0') *100 + (str[i+1]-'0') * 10 + str[i+2] - '0';
if(key[cur] != '\0')//没有相应的翻译码
temp[l++] = key[cur];
else
{
isstr = false;
break;
}
}
if(isstr)
{
for(i = 0; i < l; i++)
cout << temp[i];
cout << endl;
}
else
{
cout << "No Solution" << endl;
}
}
else
{
cout << "No Solution" << endl;
}
}
}
} int main()
{
ace();
return 0;
}

sdut2165 Crack Mathmen (山东省第二届ACM省赛)的更多相关文章

  1. Shopping(山东省第一届ACM省赛)

    Shopping Time Limit: 1000MS Memory limit: 65536K 题目描述 Saya and Kudo go shopping together.You can ass ...

  2. [2011山东省第二届ACM大学生程序设计竞赛]——Identifiers

    Identifiers Time Limit: 1000MS Memory limit: 65536K 题目:http://acm.sdut.edu.cn/sdutoj/problem.php?act ...

  3. Balloons(山东省第一届ACM省赛)

    Balloons Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Both Saya and Kudo like balloons ...

  4. Emergency(山东省第一届ACM省赛)

    Emergency Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Kudo’s real name is not Kudo. H ...

  5. 山东省第一届ACM省赛

      ID PID Title Accepted Submit A 2151 Phone Number 22 74 B 2159 Ivan comes again! 1 17 C 2158 Hello ...

  6. sdut 2165:Crack Mathmen(第二届山东省省赛原题,数论)

    Crack Mathmen Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述  Since mathmen take securit ...

  7. [2011山东ACM省赛] Mathman Bank(模拟题)

    版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/sr19930829/article/details/24187925 Mathman Bank ni ...

  8. 山东ACM省赛历届入口

    山东省第一届ACM大学生程序设计竞赛 山东省第二届ACM大学生程序设计竞赛 山东省第三届ACM大学生程序设计竞赛 山东省第四届ACM大学生程序设计竞赛 山东省第五届ACM大学生程序设计竞赛 山东省第六 ...

  9. [2011山东ACM省赛] Sequence (动态规划)

    Sequence Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Given an integer number sequence ...

随机推荐

  1. Nanami's Digital Board CodeForces - 434B (棋盘dp)

    大意: 给定01矩阵, m个操作, 操作1翻转一个点, 操作2求边界包含给定点的最大全1子矩阵 暴力枚举矩形高度, 双指针统计答案 #include <iostream> #include ...

  2. AND Graph CodeForces - 987F (状压)

    链接 大意:给定$m$个数, 若$x\&y=0$, 则在$x$与$y$之间连一条无向边. 求无向图的连通块个数 暴力连边显然超时的, 可以通过辅助结点优化连边, 复杂度$O(n2^n)$ #i ...

  3. 贪心(二)NYOJ14题

    #include <iostream> #include<cmath> #include "algorithm" using namespace std; ...

  4. Error when clicking other button after displaying Popup window(转)

    原文地址:Error when clicking other button after displaying Popup window Hi, I'm developing a custom page ...

  5. mysql判断表记录是否存在,不存在则插入新纪录

    开始以为和SQL Server一样,使用not exists进行判断,结果不行: ) INSERT INTO vrv_paw_template(templateName,templateFileNam ...

  6. 【转】C# 中使用 ThoughtWorks.QRCode.dll 生成指定尺寸和边框宽度的二维码

    本文介绍在 C# 中使用 ThoughtWorks.QRCode.dll 生成指定尺寸和边框宽度的二维码.网上文章大多只是简单介绍内置参数的设置,根据我的使用目的,增加了自定义目标二维码图片尺寸和白边 ...

  7. Django(三)url和返回

    location 最后一个文件夹名就是project名,我用了Django_Plan. Application 是自动加入的APP名字,我用了Plan 编辑Django_Plan\Django_Pla ...

  8. Pycharm(五)安装库和虚拟环境

    随便进入一个项目 进入设置    Ctrl + alt + S Project *********  - Project Interpreter     ******是你的项目名字 Project I ...

  9. 第三视角团队:"Jarvis For Chat"团队选题报告

    "Jarvis For Chat"团队选题报告 组长博客链接 本次作业链接 NABCD在项目中的使用 N(Need,需求) QQ和微信已经成为人们社交的必需品,在QQ有7.8亿活跃 ...

  10. CUDA ---- Constant Memory

    CONSTANT  MEMORY constant Memory对于device来说只读但是对于host是可读可写.constant Memory和global Memory一样都位于DRAM,并且有 ...