A Simple Math Problem HDU - 5974
生活随笔
收集整理的這篇文章主要介紹了
A Simple Math Problem HDU - 5974
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Sample Output
No Solution
308 490
輸入兩個整數a,b,知否可以找到兩個整數x,y.使其滿足x+y=a,lcm(x,y)=b 如果找不到輸出No Solution 否則輸出x y(x<=y)
gcd(x,y)=gcd(a,b);
可以記住一個結論:a和b兩個數,可以分解成x,y使得x+y=a,x和y的最小公倍數是b,(lcm(x,y)=b, 那么有gcd(a,b)=gcd(x,y);
#include <iostream> #include <math.h> using namespace std; int gcd(int x,int y) {if(y==0)return x;elsereturn gcd(y,x%y); } int main() {int a,b,temp,k,d;while(cin>>a>>b){temp=gcd(a,b);b*=temp;k=a*a-4*b;d=sqrt(k);if(k<0||d*d!=k||(a+d)%2!=0){cout<<"No Solution"<<endl;continue;}d=(a+d)/2;k=a-d;if(d<=k)cout<<d<<' '<<k<<endl;elsecout<<k<<' '<<d<<endl;}return 0; }總結
以上是生活随笔為你收集整理的A Simple Math Problem HDU - 5974的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: sdut 2087 离散事件模拟-银行管
- 下一篇: sdut 2135 数据结构实验之队列一