結果

問題 No.2420 Simple Problem
ユーザー InTheBloomInTheBloom
提出日時 2024-03-05 14:58:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 900 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 4,849 ms
コンパイル使用メモリ 341,448 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 17:58:03
合計ジャッジ時間 32,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 361 ms
6,820 KB
testcase_02 AC 5 ms
6,816 KB
testcase_03 AC 134 ms
6,820 KB
testcase_04 AC 694 ms
6,820 KB
testcase_05 AC 440 ms
6,820 KB
testcase_06 AC 857 ms
6,820 KB
testcase_07 AC 872 ms
6,816 KB
testcase_08 AC 872 ms
6,820 KB
testcase_09 AC 873 ms
6,816 KB
testcase_10 AC 882 ms
6,816 KB
testcase_11 AC 863 ms
6,816 KB
testcase_12 AC 875 ms
6,820 KB
testcase_13 AC 859 ms
6,816 KB
testcase_14 AC 897 ms
6,820 KB
testcase_15 AC 889 ms
6,816 KB
testcase_16 AC 900 ms
6,820 KB
testcase_17 AC 878 ms
6,820 KB
testcase_18 AC 862 ms
6,816 KB
testcase_19 AC 879 ms
6,820 KB
testcase_20 AC 872 ms
6,820 KB
testcase_21 AC 891 ms
6,820 KB
testcase_22 AC 895 ms
6,816 KB
testcase_23 AC 880 ms
6,816 KB
testcase_24 AC 866 ms
6,820 KB
testcase_25 AC 868 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 712 ms
6,820 KB
testcase_28 AC 706 ms
6,820 KB
testcase_29 AC 693 ms
6,816 KB
testcase_30 AC 704 ms
6,816 KB
testcase_31 AC 689 ms
6,820 KB
testcase_32 AC 1 ms
6,820 KB
testcase_33 AC 354 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <boost/multiprecision/cpp_int.hpp>

using namespace std;
using ll = long long;
using namespace boost::multiprecision;

ll solve (int A, int B) {
    auto f = [&](ll X) -> bool {
        cpp_int a = A, b = B, x = X;

        return 0 < x*x - a - b && 4 * a * b < (x*x - (a+b)) * (x*x - (a+b));
    };

    ll ok = 65000, ng = 0;
    while (1 < abs(ok-ng)) {
        ll mid = (ok + ng) / 2;
        if (f(mid)) {
            ok = mid;
        }
        else {
            ng = mid;
        }
    }

    return ok;
}

int main () {
    int N; cin >> N;
    // 二回2乗してやれば二分探索できそうな形になる(った)
    // -> アッ、二乗したときに符号関連の情報が死んでるっぽい

    while (N--) {
        int A, B; cin >> A >> B;

        auto ans = solve(A, B);
        cout << ans << "\n";
    }
}
0