UVA - 10976 Fractions Again?! C++

题目:https://odzkskevi.qnssl.com/27d81f981b3aae8419cb258315756d15?v=1532307350

思路:

就是暴力地遍历……然后我是把每一对x和y存在队列里,最后读出。

因为1/n=1/x+1/y,1/y>0,所以1/n>1/x,即n=y,所以1/n<2/x,即x<2n。

代码:

#include
#include
#include
using namespace std;
queue >q;
int main()
{
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        int tot=0;
        int x,y;
        for(int i=n+1;i<=2*n;i++)
        {
            y=i;
            if((n*y)%(y-n)==0)
            {
                x=(n*y)/(y-n);
                q.push(pair(x,y));
                tot++;
            }
        }
        cout< p=q.front();
            q.pop();
            int nx=p.first,ny=p.second;
            printf("1/%d = 1/%d + 1/%d\n",n,nx,ny);
        }
    }
    return 0;
}

 

你可能感兴趣的:(练习)