zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    7月24日学习
    7月23日学习
    7月22日学习
    7月21日学习
    【编程技巧】applicationContext.xml 里面可配置bean和数据库地址
    【编程技巧】 输入框只能输入中文
    【开发技术】Beyond Compare
    【编程技巧】Ext.QuickTips.init();
    【开发技术】常用正则表达式大全!(例如:匹配中文、匹配html)
    【编程技巧】addSubview和insertSubview的区别
  • 原文地址:https://www.cnblogs.com/ToTOrz/p/7385140.html
Copyright © 2011-2022 走看看