poj 3090 Visible Lattice Points

Description

A lattice point (xy) in the first quadrant (x and y are integers greater than or equal to 0), other than the origin, is visible from the origin if the line from (0, 0) to (xy) does not pass through any other lattice point. For example, the point (4, 2) is not visible since the line from the origin passes through (2, 1). The figure below shows the points (xy) with 0 ≤ xy≤ 5 with lines from the origin to the visible points.

Write a program which, given a value for the size, N, computes the number of visible points (xy) with 0 ≤ xy ≤ N.

Input

The first line of input contains a single integer C (1 ≤ C ≤ 1000) which is the number of datasets that follow.

Each dataset consists of a single line of input containing a single integer N (1 ≤ N ≤ 1000), which is the size.

Output

For each dataset, there is to be one line of output consisting of: the dataset number starting at 1, a single space, the size, a single space and the number of visible points for that size.

 

#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long LL;
LL gcd(LL a, LL b){
    if (a < b) return gcd(b,a);
    if (b == 0) return a;
    return gcd(b,a % b);
}
LL ans[1005] = {0};
int main()
{
    //  freopen("test.in","r",stdin);
     LL C;
     cin >> C;

     for (int i=1;i<=1000;i++){
         ans[i] = ans[i-1];
         for (int j=1;j<=i;j++){
             if (gcd(i,j) == 1){
                 if (i == j){
                     ans[i] ++;
                 }
                 else
                      ans[i] += 2;
             }
         }
     }
     for (int times = 1; times <= C; times ++){
         int size;
         cin >> size;
         cout << times << " " << size << " " << ans[size] + 2 << endl;
     }
     return 0;
}
View Code
原文地址:https://www.cnblogs.com/ToTOrz/p/7385140.html