zoukankan      html  css  js  c++  java
  • hdu 1222 狼和兔子

    Description

    There is a hill with n holes around. The holes are signed from 0 to n-1. 
    A rabbit must hide in one of the holes. A wolf searches the rabbit in anticlockwise order. The first hole he get into is the one signed with 0. Then he will get into the hole every m holes. For example, m=2 and n=6, the wolf will get into the holes which are signed 0,2,4,0. If the rabbit hides in the hole which signed 1,3 or 5, she will survive. So we call these holes the safe holes. 
     

    Input

    The input starts with a positive integer P which indicates the number of test cases. Then on the following P lines,each line consists 2 positive integer m and n(0<m,n<2147483648). 
     

    Output

    For each input m n, if safe holes exist, you should output "YES", else output "NO" in a single line. 
     

    Sample Input

    2
    1 2
    2 2
     

    Sample Output

    NO
    YES
     
     
     
    题意:有n个洞,这些洞围成一个圆形,狼去找兔子,按照一个规律去找,问最后还有没有剩下狼没找过洞.....
    若果有就输出YES,没有就输出NO...
     
     
     
    解题思路:第一眼看上去我就觉得只要狼不是按照一个一个的找的就一定会有剩下的....然后我发现我煞笔了....
          这题其实是找n和m有没有公约数,如果有公约数那么浪找完一圈之后他就会一直找这么几个洞,如果没有公约数,那么狼就总会找到的只是时间问题
     
     
     
    代码如下:
     
     
     1 #include <stdio.h>
     2 int gcd(int a,int b)
     3 {
     4     return b==0?a:gcd(b,a%b);
     5 }
     6 int main()
     7 {
     8     int T;
     9     scanf("%d",&T);
    10     while(T--)
    11     {
    12         int m,n;
    13         scanf("%d%d",&m,&n);
    14         int j=gcd(n,m);
    15         //printf("%d
    ",j);
    16         if(j==1)
    17             printf("NO
    ");
    18         else
    19             printf("YES
    ");
    20     }
    21     return 0;
    22 }
  • 相关阅读:
    perf + 火焰图用法 小结
    忽略多年的地理基本知识
    windows7安装docker异常:looks like something went wrong in step ‘looking for vboxmanage.exe’
    我的选择
    CSS3 width的min/max-content、fill-available以及fit-content
    Redis入门与命令汇总
    javascript中的原型详解
    Promise实现及原理
    nodejs中的垃圾回收
    javascript中的闭包
  • 原文地址:https://www.cnblogs.com/huangguodong/p/4739682.html
Copyright © 2011-2022 走看看