B. Omkar and Last Class of Math1300 / 数论

Posted 幽殇默

tags:

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


https://codeforces.com/problemset/problem/1372/B
设x是n的因子,a=x,b=n-x,那么就有max(a,b)%min(a,b)=0
那么a,b的最大公倍数便是max(a,b)
例如: 8=2*4 那么可以分成 4 4
例如: 16=4*4 那么可以分成 4 12 必可以是它的约数
随着约数的增大,我们的分的第二份越来越小,越来越是正解。

#include<bits/stdc++.h>
using namespace std;
int main(void)
{
	int t; cin>>t;
	while(t--)
	{
		int n; cin>>n;
		int cnt=n,x=1,y=n-x;
		for(int i=2;i<=n/i;i++)
		{
			if(n%i==0)
			{
				int temp1=n/i,temp2=n-temp1;//总共i份 1份给temp1 (i-1)份给temp2
				if(temp2<=cnt) cnt=temp2,x=temp1,y=temp2;
			}
		}
		cout<<x<<" "<<y<<endl;
	}
	return 0;
}

以上是关于B. Omkar and Last Class of Math1300 / 数论的主要内容,如果未能解决你的问题,请参考以下文章

[Codeforces 1586] Omkar and Determination | 思维前缀和

Codeforces Round #655 (Div. 2) A. Omkar and Completion

E. Omkar and Forest——Codeforces Round #724 (Div. 2)

E. Omkar and Forest——Codeforces Round #724 (Div. 2)

CF #724(div2)A. Omkar and Bad Story,贪心,构造序列

CF1392G Omkar and Pies状压DP