Jam's math problem<hdoj5615>

本文介绍了一种通过编程方式解决特定形式多项式是否可以分解为两个一次因式的乘积的问题。具体而言,对于形式为 ax² + bx + c 的多项式,探讨了其是否能被分解为 (px + k)(qx + m) 的形式,其中 p, q, m, k 均为正整数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem Description
Jam has a math problem. He just learned factorization.
He is trying to factorize ax2+bx+c into the form of pqx2+(qk+mp)x+km=(px+k)(qx+m).
He could only solve the problem in which p,q,m,k are positive numbers.
Please help him determine whether the expression could be factorized with p,q,m,k being postive.
 

Input
The first line is a number T, means there are T(1T100) cases 

Each case has one line,the line has 3 numbers a,b,c(1a,b,c100000000)
 

Output
You should output the "YES" or "NO".
 

Sample Input
2 1 6 5 1 6 4
 

Sample Output
YES

NO

求a*x^2+b*x+c能否分解因式 暴力循环查找

pqx2+(qk+mp)x+km=(px+k)(qx+m)找出符合的p q n m

#include<cstdio>
int main()
{
	int t;
	scanf("%d",&t);	
	long long a,b,c;
	while(t--)
	{
		scanf("%lld%lld%lld",&a,&b,&c);
		int flog=0;
		for(long long i=1;i*i<=a;i++)
		{
			if(a%i!=0)
			continue;
			for(long long j=1;j*j<=c;j++)
			{
					if(c%j!=0)
			        continue;
				if(b==((i*j)+(a/i*c/j))||b==(i*(c/j)+j*(a/i)))
				{
							flog=1;
							break;
				}
		
			}
			if(flog==1)
			break;
		}
		if(flog==0)
		{
				printf("NO\n");
		}
		else
		{
				printf("YES\n");	
		}

	}
	return 0;
 } 



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值