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
  • 相关阅读:
    linux下oracle启动关闭
    win10安装JDK详细教程
    Spring MVC中用@ResponseBody转json,对json进行处理方法汇总
    js实现横向跑马灯效果
    Oracle的ORA-02292报错:违反完整性约束,已找到子记录
    echarts中legend如何换行
    java中split特殊符号
    Tomcat开启SSL协议支持
    Oracle获取表字段名,字段类型,字段长度,注释
    Oracle根据符合条件的数据循环批量更新
  • 原文地址:https://www.cnblogs.com/ToTOrz/p/7385140.html
Copyright © 2011-2022 走看看