結果
問題 | No.2953 Maximum Right Triangle |
ユーザー | FplusFplusF |
提出日時 | 2024-11-08 21:31:15 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,472 bytes |
コンパイル時間 | 2,667 ms |
コンパイル使用メモリ | 245,080 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 21:31:39 |
合計ジャッジ時間 | 3,131 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
ソースコード
#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; } 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,(ll)((ld)hypot(x,y)*(ld)hypot(l*(-q),l*p))); ll r=binary_search<ll>(g,0,INF); chmax(ans,(ll)((ld)hypot(x,y)*(ld)hypot(r*p,l*(-q)))); cout << ans << '\n'; } }