UVA10820 send a table

Posted 不搞事情和咸鱼有什么区别

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UVA10820 send a table相关的知识,希望对你有一定的参考价值。

题意:对(x,y),1<=x,y<=n 求出有多少对(x,y)互质

题解:筛法跑一遍欧拉就好了

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
ll phi[50001];
void init()
{
    for(int i=1;i<=50000;i++) phi[i]=i;
    for(int i=2;i<=50000;i++)
    {
        if(phi[i]==i)
        {
            for(int j=i;j<=50000;j+=i)
            {
                phi[j]=phi[j]/i*(i-1);
            }
        }
    }
}
int main()
{
    ll n;
    init();
    //cout<<phi[2]<<endl;
    while(cin>>n&&n)
    {
        ll sum=0;
        for(int i=2;i<=n;i++) sum+=phi[i];
        sum*=2;
        cout<<sum+1<<endl;
    }
    return 0;
}

 

以上是关于UVA10820 send a table的主要内容,如果未能解决你的问题,请参考以下文章

UVA 10820 Send a Table

UVA10820 send a table

UVa10820 Send a Table

UVa 10820 - Send a Table

uva10820Send a Table

UVA 10820 交表