程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 3090 Visible Lattice Points 歐拉函數

POJ 3090 Visible Lattice Points 歐拉函數

編輯:C++入門知識

POJ 3090 Visible Lattice Points 歐拉函數


 

題意:在坐標系中,從橫縱坐標 0 ≤ x, y ≤ N中的點中選擇點,並且這些點與(0,0)的連點不經過其他的點。

思路:顯而易見,x與y只有互質的情況下才會發生(0,0)與(x,y)交點不經過其他的點的情況,對於x,y等於N時,可以選擇的點均為小於等於N並且與N互質的數,共Euler(N)個,並且不重疊。所以可以得到遞推公式aa[i]=aa[i]+2*Euler(N)。
代碼:

 

#include 
#include 
#include 
#include 
#include
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define PI acos(-1.0)
#define maxn 10005
#define INF 0x7fffffff
#define eps 1e-8
typedef long long LL;
typedef unsigned long long ULL;
using namespace std;
int aa[1005];
int Euler(int tot)
{
    int num=tot;
    for(int i=2; i<=tot; i++)
    {
        if(tot%i==0)
            num=num/i*(i-1);
        while(tot%i==0)
            tot/=i;
    }
    return num;
}
void init()
{
    aa[0]=0;
    aa[1]=3;
    for(int i=2; i<=1000; i++)
        aa[i]=aa[i-1]+Euler(i)*2;
}
int main()
{
    int T;
    scanf(%d,&T);
    init();
    for(int ii=1; ii<=T; ii++)
    {
        int tot;
        scanf(%d,&tot);
        printf(%d %d %d
,ii,tot,aa[tot]);
    }
    return 0;
}


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved