Description
已知两个正整数a,ba,b的和ss与最大公约数,求a,ba,b
Input
两个整数s,g(1≤s,g≤109)s,g(1≤s,g≤109)
Output
如果有满足条件的a,ba,b则输出任意一组,否则输出−1−1
Sample Input
6 2
Sample Output
4 2
Solution
a=c⋅g,b=d⋅g,(c,d)=1,s=a+b=(c+d)⋅ga=c⋅g,b=d⋅g,(c,d)=1,s=a+b=(c+d)⋅g,故若g|sg|s且s>gs>g则a=g,b=s−ga=g,b=s−g显然符合条件,否则无解
Code
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<vector>
#include<queue>
#include<map>
#include<set>
#include<ctime>
using namespace std;
typedef long long ll;
typedef pair<int,int>P;
const int INF=0x3f3f3f3f,maxn=100001;
int main()
{
int s,g;
while(~scanf("%d%d",&s,&g))
if(s%g!=0||s==g)printf("-1\n");
else printf("%d %d\n",g,s-g);
return 0;
}