zoukankan      html  css  js  c++  java
  • POJ 2635, The Embarrassed Cryptographer

    Time Limit: 2000MS  Memory Limit: 65536K
    Total Submissions: 5907  Accepted: 1402


    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 10
    143 20
    667 20
    667 30
    2573 30
    2573 40
    0 0

    Sample Output
    GOOD
    BAD 11
    GOOD
    BAD 23
    GOOD
    BAD 31

    Source
    Nordic 2005


    // POJ2635.cpp : Defines the entry point for the console application.
    //

    #include 
    <iostream>
    using namespace std;
    bool check(int div,int KI[],int li)
    {
        
    int i = 0;
        
    int remain = 0;
        
    while (i < li)remain = (remain * 1000 + KI[i++]) % div;
        
    return (remain == 0? false:true;
    }
    int main(int argc, char* argv[])
    {
        
    //create prime table
        int const SIZE = 1000005;
        
    bool isprime[SIZE];
        memset(isprime, 
    1sizeof(isprime));
        
    int prime[80000];
        memset(prime, 
    0sizeof(prime));
        isprime[
    0= isprime[1= false;
        
    int j = 0;
        
    for (int i = 2; i < SIZE; ++i)
            
    if (isprime[i] == true)
            {
                prime[j
    ++= i;
                
    int k = 2;
                
    while(i * k < SIZE)isprime[i * k] = false++k;
            };

        
    int L,KI[40];
        
    char K[105];
        
    while (scanf("%s %d"&K, &L) != EOF && K[0!= '0' && L != 0)
        {
            
    //init 1000 base int array
            int N = strlen(K);
            
    int lowbound = 0, upbound = (N % 3 == 0? 3: N % 3;
            
    int li = (N % 3 == 0)? N / 3: N /3 + 1;
            
    int i = 0;
            
    while (upbound <= N)
            {
                
    int num = 0;
                
    for (int j = lowbound; j < upbound; ++j) num = num * 10 + (K[j] - '0');
                KI[i
    ++= num;
                lowbound 
    = upbound;
                upbound 
    += 3;
            }

            
    //check good
            i = 0;
            
    bool good = true;
            
    while(prime[i] < L)
            {
                
    if (check(prime[i], KI, li) == false)
                {
                    good 
    = false;
                    
    break;
                }
                
    ++i;
            }

            
    if (good == true) cout <<"GOOD\n";
            
    else cout << "BAD "<<prime[i]<<endl;
        }
        
    return 0;
    }

  • 相关阅读:
    推荐系统相关知识
    关于hive核心
    关于hive的基础
    立个flag
    关于数据增强——文本增强
    .NET Core 实践:事件通知和异步处理
    .NET Core 实践:微服务架构的优点
    C#一定比C++性能差?当然不!破除迷信,从我做起!
    Visual Studio Code 搭配 Docker 一键搭建golang开发环境
    单例双重检查引发的资源竞争/数据竞争
  • 原文地址:https://www.cnblogs.com/asuran/p/1585709.html
Copyright © 2011-2022 走看看