POJ - 3090 Visible Lattice Points

Fox...發表於2020-12-10

傳送門

題 意 : 給 一 個 n ∗ n 的 方 格 , 問 從 坐 標 ( 0 , 0 ) 點 能 看 到 多 少 點 . 只 有 一 個 點 沒 有 題意: 給一個n{*}n的方格,問從座標(0,0)點能看到多少點.只有一個點沒有 nn(0,0).
被 另 一 個 點 擋 住 能 看 到 . 被另一個點擋住能看到. .

分 析 : 列 舉 4 ∗ 4 的 方 格 , 我 們 可 以 發 現 每 一 個 滿 足 的 點 的 坐 標 ( x , y ) 分析:列舉4{*}4的方格,我們可以發現每一個滿足的點的座標(x,y) 44滿(xy)
那 麼 x 就 是 y 對 應 的 一 個 歐 拉 函 數 , 所 以 a n s = 2 ∗ φ ( n ) + 1 那麼x就是y對應的一個尤拉函式,所以ans=2{*}φ(n)+1 xy,ans=2φ(n)+1

#include <set>
#include <map>
#include <list>
#include <cmath>
#include <stack>
#include <queue>
#include <string>
#include <bitset>
#include <vector>
#include<cstring>
#include <stdio.h>
#include <iostream>
#include <algorithm>
/*
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);*/
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
inline int read(){int s=0,w=1;char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
    while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();return s*w;}
const int maxn = 1e3+5;
int phi[maxn];
void Phi()
{
    for(int i=1;i<maxn;i++) phi[i]=i;
    for(int i=2;i<maxn;i++){
        if(phi[i]==i)
            for(int j=i;j<maxn;j+=i)
                phi[j]=phi[j]/i*(i-1);
    }
    for(int i=2;i<maxn;i++)
        phi[i]+=phi[i-1];
    for(int i=1;i<maxn;i++)
        phi[i]=phi[i]*2+1;
}
int main()
{
    int t=read(),cas=0;
    Phi();
    while (t--)
    {
        int n=read();
        printf("%d %d %d\n",++cas,n,phi[n]);
    }
    return 0;
}

相關文章