結果

問題 No.456 Millions of Submits!
ユーザー pekempeypekempey
提出日時 2016-12-07 22:20:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
OLE  
実行時間 -
コード長 1,269 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 177,604 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 02:38:16
合計ジャッジ時間 10,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 59 ms
5,376 KB
testcase_10 AC 60 ms
5,376 KB
testcase_11 AC 585 ms
5,376 KB
testcase_12 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include <bits/stdc++.h>
using namespace std;

int main() {
    int m;
    cin >> m;
    double maxi = exp(10);
    while (m--) {
        int a, b;
        double t;
        scanf("%d %d %lf", &a, &b, &t);
        double ans = 0;
        {
            double ok = 1.1;
            double ng = 0;
            for (int ii = 0; ii < 40; ii++) {
                double mid = (ok + ng) / 2;
                if (pow(mid, a) * pow(log(mid), b) >= t) {
                    ok = mid;
                } else {
                    ng = mid;
                }
            }
            if (ok < 1 + 1e-6) {
                ans = ok;
            }
        }
        {
            double ok = maxi;
            double ng = 1;
            double logT = log(t);
            for (int ii = 0; ii < 50; ii++) {
                double mid = (ok + ng) / 2;
                double logN = log(mid);
                double loglogN = log(logN);
                if (a * logN + b * loglogN >= logT) {
                    ok = mid;
                } else {
                    ng = mid;
                }
            }
            if (ok > 1 + 1e-9) {
                ans = ok;
            }
        }
        printf("%.20f\n", ans);
    }
}
0