Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

请教,关于扩展欧几里德的负数运算的问题

Posted by alpc62 at 2007-09-12 19:45:46 on Problem 2115
__int64 x,y,t;

__int64 extend_gcd(__int64 a,__int64 b)
{
	__int64 z;
	if (!b)
	{
		x=1;
		y=0;
		return a;
	}
	z=extend_gcd(b,a%b);
	t=x;
	x=y;
	y=t-(a/b)*y;
	return z;
}

传递参数时候,我传入一正一负,不停WA;保证两个都是正数才AC。
怎样修改才能让传入参数是负数时候也不影响运算结果?

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator