結果

問題 No.2953 Maximum Right Triangle
ユーザー daiotadaiota
提出日時 2024-11-08 22:59:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,109 bytes
コンパイル時間 1,655 ms
コンパイル使用メモリ 167,316 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 22:59:53
合計ジャッジ時間 2,187 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)


ll extgcd(ll a,ll b,ll & x,ll & y){
	ll g;
	if(b!=0){
		g=extgcd(b,a%b,y,x);
		y-=(a/b)*x;
	}else{
        g=a;
		x=1; y=0;
	}
	  return g;
}





int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	ll i,j;


	int T;
	cin >> T;
	while(T--){

		ll D,a,b;
		cin >> D >> a >> b;

		if(a==0){
			cout << b*D/2 << endl;
			continue;
		}

		if(b==0){
			cout << a*D/2 << endl;
			continue;
		}


		ll x,y;
		ll c=a*a+b*b;


		ll g=extgcd(a,b,x,y);

		if(c%g!=0){
			cout << 0 << endl;
			continue;
		}


		ll p=(-c*x/g+b/g-1)/(b/g),q=(D-c*x/g)/(b/g);
		ll qq=(c*y/g)/(a/g),pp=(c*y/g-D+a/g-1)/(a/g);

		if(max(p,pp)>min(q,qq)){
			cout << 0 << endl;
			continue;
		}

		ll u=max(p,pp),v=min(q,qq);

		ll X,Y,s,S;
		X=c*x/g+b*u/g;
		Y=c*y/g-a*u/g;

		s=2*max(a,X)*max(b,Y)-(a*b+X*Y+llabs(X-a)*llabs(Y-b));


		X=c*x/g+b*v/g;
		Y=c*y/g-a*v/g;

		S=2*max(a,X)*max(b,Y)-(a*b+X*Y+llabs(X-a)*llabs(Y-b));




		cout << max(s,S) << endl;





	}




	return 0;

}
0