r语言列表添加元素的方法是什么
364
2022-08-31
POJ 2635 The Embarrassed Cryptographer (同余问题)
Description
The young and very promising cryptographer Odd Even has implemented the security module of a large system with thousands of users, which is now in use in his company. The cryptographic keys are created from the product of two primes, and are believed to be secure because there is no known method for factoring such a product effectively. What Odd Even did not think of, was that both factors in a key should be large, not just their product. It is now possible that some of the users of the system have weak keys. In a desperate attempt not to be fired, Odd Even secretly goes through all the users keys, to check if they are strong enough. He uses his very poweful Atari, and is especially careful when checking his boss’ key.
Input
The input consists of no more than 20 test cases. Each test case is a line with the integers 4 <= K <= 10100 and 2 <= L <= 106. K is the key itself, a product of two primes. L is the wanted minimum size of the factors in the key. The input set is terminated by a case where K = 0 and L = 0.
Output
For each number K, if one of its factors are strictly less than the required L, your program should output “BAD p”, where p is the smallest factor in K. Otherwise, it should output “GOOD”. Cases should be separated by a line-break.
Sample Input
143 10143 20667 20667 302573 302573 400 0
Sample Output
GOODBAD 11GOODBAD 23GOODBAD 31
题意
已知K是两个素数的乘积,判断这两个素数中最小的一个是否小于L,若小于,输出BAD + MIN_PRIME,否则输出GOOD。
思路
同余定理中有这么几条定律
(a+b)%c=(a%c+b%c)%c
(a∗b)%c=(a%c∗b%c)%c
例如要验证123是否被3整除,只需求 123%3
但是,当123是一个大数时,我们不能直接对它进行模运算,只能通过同余定理对大数进行分块,然后间接运算。
具体的做法:
先求 1%3=1
再求 (1∗10+2)%3=0
再求 (0∗10+3)%3=0
于是便间接得到了 123%3=0
题目中有说明K的范围是 [4,10100]
用千进制存储主要是为了减少循环的次数,可以把原数长度缩短3倍,毕竟 1000=103
AC代码
#include
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~