結果

問題 No.2953 Maximum Right Triangle
ユーザー InTheBloomInTheBloom
提出日時 2024-11-08 21:31:48
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,107 bytes
コンパイル時間 979 ms
コンパイル使用メモリ 85,304 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-08 21:31:49
合計ジャッジ時間 1,304 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#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;
        cout << area << "\n";
    }
}
0