結果

問題 No.2953 Maximum Right Triangle
ユーザー FplusFplusFFplusFplusF
提出日時 2024-11-08 21:39:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,538 bytes
コンパイル時間 2,671 ms
コンパイル使用メモリ 245,236 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 21:40:08
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
constexpr ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define replr(i,l,r) for (ll i=(ll)(l);i<(ll)(r);i++)
#define all(v) v.begin(),v.end()
#define len(v) ((ll)v.size())
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
template<class T> T binary_search(auto f,T ok,T ng){
    while(1<abs(ok-ng)){
        T mid=midpoint(ok,ng);
        if(f(mid)) ok=mid;
        else ng=mid;
    }
    return ok;
}
ll area(ll a,ll b,ll c,ll d){
    ll x=max(a,c),y=max(b,d);
    return x*y*2-(a*b+c*y+(x-c)*(y-b));
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll t;
    cin >> t;
    while(t--){
        ll d,x,y;
        cin >> d >> x >> y;
        ll p=x/gcd(x,y),q=y/gcd(x,y);
        auto f=[&](ll m){
            ll tx=x+m*(-q),ty=y+m*p;
            return 0<=tx&&tx<=d&&0<=ty&&ty<=d;
        };
        auto g=[&](ll m){
            ll tx=x+m*q,ty=y+m*(-p);
            return 0<=tx&&tx<=d&&0<=ty&&ty<=d;
        };
        ll ans=0;
        ll l=binary_search<ll>(f,0,INF);
        chmax(ans,area(x,y,x+l*(-q),y+l*p));
        ll r=binary_search<ll>(g,0,INF);
        chmax(ans,area(x+r*q,y+l*(-p),x,y));
        cout << ans << '\n';
    }
}
0