C. Fadi and LCM1400 / 数论

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C. Fadi and LCM1400 / 数论相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/1285/C
题目要求的是max(a,b)尽可能的小,故考虑对n分解约数。让俩约数尽可能的接近。且满足gcd(a,b)==1

#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
LL gcd(LL a,LL b) {return b?gcd(b,a%b):a;}
LL x,y;
int main(void)
{
	LL n; cin>>n;
	for(int i=1;i<=n/i;i++)
	{
		if(n%i==0)
		{
			LL j=n/i;
			if(gcd(i,j)==1) x=i,y=j;
		}
	}
	cout<<x<<" "<<y<<endl;
	return 0;
}

以上是关于C. Fadi and LCM1400 / 数论的主要内容,如果未能解决你的问题,请参考以下文章

C. Phoenix and Towers1400 / 贪心

C. Phoenix and Towers1400 / 贪心

整除分块数论C. Floor and Mod

C. Neko does Maths(数论 二进制枚举因数)

整除分块数论C. Floor and Mod

C. Given Length and Sum of Digits...1400 / 贪心