結果
問題 | No.2953 Maximum Right Triangle |
ユーザー | InTheBloom |
提出日時 | 2024-11-08 21:33:43 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,111 bytes |
コンパイル時間 | 807 ms |
コンパイル使用メモリ | 85,168 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 21:33:45 |
合計ジャッジ時間 | 1,323 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_06 | WA | - |
ソースコード
#include <iostream> #include <numeric> #include <utility> using namespace std; using ll = long long; int main () { int T; cin >> T; for (int z = 0; z < T; z++) { int D, x, y; cin >> D >> x >> y; int d = gcd(x, y); auto v = make_pair(-y / d, x / d); auto ch = [&] (int mul) { ll nx = 1LL * mul * v.first + x; ll ny = 1LL * mul * v.second + y; if (nx < 0 || D < nx) return false; if (ny < 0 || D < ny) return false; return true; }; auto bs = [&] () { int ok = 0, ng = 1000000000 + 10; while (1 < abs(ok - ng)) { int m = (ok + ng) / 2; if (ch(m)) { ok = m; } else { ng = m; } } return ok; }; int p = bs(); v.first = -v.first; v.second = -v.second; int q = bs(); int r = max(p, q); ll area = (1LL * x * x + 1LL * y * y) * r / d; cout << area << "\n"; } }