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
  • 相关阅读:
    04: vue生命周期和实例属性和方法
    03: vuejs 事件、模板、过滤器
    (打补丁 )patch
    zabbix安装
    zabbix简介
    linux 虚拟网络模型介绍
    虚拟化
    虚拟化分类(半虚拟化和全虚拟化)
    playbook详解—YAML格式的文本
    ansible的介绍和一些基本模块介绍
  • 原文地址:https://www.cnblogs.com/ToTOrz/p/7385140.html
Copyright © 2011-2022 走看看