CodeForces 1372B - Omkar and Last Class of Math(思维)

B. Omkar and Last Class of Math

time limit per test 1 second
memory limit per test 256 megabytes
input standard input
output standard output
In Omkar’s last class of math, he learned about the least common multiple, or LCM. LCM(a,b) is the smallest positive integer x which is divisible by both a and b.

Omkar, having a laudably curious mind, immediately thought of a problem involving the LCM operation: given an integer n, find positive integers a and b such that a+b=n and LCM(a,b) is the minimum value possible.

Can you help Omkar solve his ludicrously challenging math problem?

Input

Each test contains multiple test cases. The first line contains the number of test cases t (1≤t≤10). Description of the test cases follows.

Each test case consists of a single integer n (2≤n≤109).

Output

For each test case, output two positive integers a and b, such that a+b=n and LCM(a,b) is the minimum possible.

Example input

3
4
6
9

output

2 2
3 3
3 6

Note

For the first test case, the numbers we can choose are 1,3 or 2,2. LCM(1,3)=3 and LCM(2,2)=2, so we output 2 2.

For the second test case, the numbers we can choose are 1,5, 2,4, or 3,3. LCM(1,5)=5, LCM(2,4)=4, and LCM(3,3)=3, so we output 3 3.

For the third test case, LCM(3,6)=6. It can be shown that there are no other pairs of numbers which sum to 9 that have a lower LCM.

题目大意:

输入一个t表示有t组数据,对于每组数据输入一个n,求a+b==n且 lcm(a,b)尽可能的小。

解题思路:

要使lcm(a,b)尽可能小,我们要求a和b尽可能靠近,并且a能够被b整除,比如27 a=9,b=18。要求这样的a,b首先使两数都能被n整除,然后再尽可能靠近。可以利用一下求素数的思想,从2枚举到sqrt(n),一旦发现发现n%i==0就输出 n/i 和 n-n/i 。如果一直没有则输出 1 和 n-1 。从2开始枚举如果可以除尽则说明可以分成两份,两两相等,如果%3=0则说明可以分成3份,令a等于1份,b等于2份即可。AC代码:

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <vector>
#include <cstring>
#include <queue>
#include <cmath>
using namespace std;
int main()
{
	int t,n;
	cin>>t;
	while(t--)
	{
		int n;
		cin>>n;
        bool flag=true;
        for(int i=2;i<=floor(sqrt(n)+0.5);i++)
          if(n%i==0)
          {
            int a=n/i,b=n-a;
            cout<<a<<" "<<b<<endl;
            flag=false;
            break;
          }
        if(flag)
          cout<<1<<" "<<n-1<<endl;
	}
	return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值