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
  • 相关阅读:
    P2788 数学1(math1)- 加减算式
    数据库第三章-学习笔记
    字典序
    P1739 表达式括号匹配
    P3742 umi的函数
    P1765 手机
    P2192 HXY玩卡片
    全排函数c++ next_permutation()
    11.css定义下拉菜单
    10.php引用(&)详解及注意事项
  • 原文地址:https://www.cnblogs.com/ToTOrz/p/7385140.html
Copyright © 2011-2022 走看看