uva 113 - Power of Cryptography

November 8, 2012
Uva

Current work in cryptography involves (among other things) large prime numbers and computing powers of numbers modulo functions of these primes. Work in this area has resulted in the practical use of results from number theory and other branches of mathematics once considered to be of only theoretical interest. This problem involves the efficient computation of integer roots of numbers.   Given an integer and an integer you are to write a program that determines , the positive root of p. In this problem, given such integers n and p, p will always be of the form for an integer k (this integer is what your program must find).   The input consists of a sequence of integer pairs n and p with each integer on a line by itself. For all such pairs , and there exists an integer k, such that .   For each integer pair n and p the value should be printed, i.e., the number k such that .         4 3 1234 这道题目里面 p, n 没有超过 double 范围,所以。。。。水题,典型的纸老虎。

拙劣的代码

#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cmath>

using namespace std;

int main(void)
{
    double n , p;
    int k;

#ifndef ONLINE_JUDGE
    freopen("in", "r", stdin);
#endif

    while (cin >> n >> p)
    {
        k = floor(pow(p, 1 / n) + 0.5);
        cout << k << endl;
    }

    return 0;
}


comments powered by Disqus