Uva 10820 Send a Table(数论、欧拉筛法)

来源:互联网 发布:服务器1433端口不通 编辑:程序博客网 时间:2024/06/08 15:09

Uva 10820 Send a Table(数论、欧拉筛法)

链接:
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1761


题目

Time Limit:3000MS Memory Limit:0KB
Description
When participating in programming contests, you sometimes face the following problem: You know how to calcutale the output for the given input values, but your algorithm is way too slow to ever pass the time limit. However hard you try, you just can’t discover the proper break-off conditions that would bring down the number of iterations to within acceptable limits.

Now if the range of input values is not too big, there is a way out of this. Let your PC rattle for half an hour and produce a table of answers for all possible input values, encode this table into a program, submit it to the judge, et voila: Accepted in 0.000 seconds! (Some would argue that this is cheating, but remember: In love and programming contests everything is permitted).
Faced with this problem during one programming contest, Jimmy decided to apply such a ’technique’. But however hard he tried, he wasn’t able to squeeze all his pre-calculated values into a program small enough to pass the judge. The situation looked hopeless, until he discovered the following property regarding the answers: the answers where calculated from two integers, but whenever the two input values had a common factor, the answer could be easily derived from the answer for which the input values were divided by that factor. To put it in other words:

Say Jimmy had to calculate a function Answer(x, y) where x and y are both integers in the range [1, N]. When he knows Answer(x, y), he can easily derive Answer(k ∗ x, k ∗ y), where k is any integer from it by applying some simple calculations involving Answer(x, y) and k. For example if N = 4, he only needs to know the answers for 11 out of the 16 possible input value combinations: Answer(1, 1), Answer(1, 2), Answer(2, 1), Answer(1, 3), Answer(2, 3), Answer(3, 2), Answer(3, 1), Answer(1, 4), Answer(3, 4), Answer(4, 3) and Answer(4, 1). The other 5 can be derived from them (Answer(2, 2), Answer(3, 3) and Answer(4, 4) from Answer(1, 1), Answer(2, 4) from Answer(1, 2), and Answer(4, 2) from Answer(2, 1)). Note that the function Answer is not symmetric, so Answer(3, 2) can not be derived from Answer(2, 3).

Now what we want you to do is: for any values of N from 1 upto and including 50000, give the number of function Jimmy has to pre-calculate.

Input
The input file contains at most 600 lines of inputs. Each line contains an integer less than 50001 which indicates the value of N. Input is terminated by a line which contains a zero. This line should not be processed.

Output
For each line of input produce one line of output. This line contains an integer which indicates how many values Jimmy has to pre-calculate for a certain value of N.

Sample Input
2
5
0

Sample Output
3
19


题意

给一个数n,求1~n之间互质的数有几对。


分析

题意很明显,欧拉筛法就是用来求互质数的对数。使用欧拉筛法进行打表,然后判断即可。由于两数顺序可反,所以结果乘2,还需要注意(1,1)这个情况,故结果不要忘记减1


源码

#include<cstdio>#include<cstring>#include<iostream>#include<queue>#include<vector>#include<algorithm>#include<string>#include<sstream>#include<cmath>#include<set>#include<map>#include<vector>#include<stack>#include<utility>#include<sstream>#define mem0(x) memset(x,0,sizeof x)#define mem1(x) memset(x,-1,sizeof x)#define dbug cout<<"here"<<endl;//#define LOCALusing namespace std;typedef long long ll;typedef unsigned long long ull;const int INF = 0x3f3f3f3f;const int MAXN = 50001;const int MOD = 1000000007;ll phi[50010];ll cnt[50010];void phiTable(){    mem0(phi);    phi[1] = 1;    for(int i = 2; i <= MAXN; ++i){        if(!phi[i]){            for(int j = i; j <= MAXN; j+=i){                if(!phi[j])                    phi[j] = j;                phi[j] = phi[j]/i * (i-1);            }        }    }    mem0(cnt);    cnt[0] = 0;    for(int i = 1; i <= 50000; ++i){        cnt[i] = cnt[i-1] + phi[i];    }}int main(){    #ifdef LOCAL        freopen("C:\\Users\\asus-z\\Desktop\\input.txt","r",stdin);        freopen("C:\\Users\\asus-z\\Desktop\\output.txt","w",stdout);    #endif    phiTable();    int n;    while(cin >> n, n){        ll tmp = cnt[n];        cout << 2*tmp-1 << endl;    }    return 0;}
0 0
原创粉丝点击