結果
問題 | No.306 さいたま2008 |
ユーザー | rsk0315 |
提出日時 | 2020-03-14 12:09:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,268 bytes |
コンパイル時間 | 662 ms |
コンパイル使用メモリ | 53,760 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 23:07:21 |
合計ジャッジ時間 | 1,350 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
ソースコード
/** * @brief 黄金比分割探索 * @author えびちゃん */ #ifndef H_ternary_search #define H_ternary_search #include <cmath> #include <utility> template <typename Fn, typename Tp> std::pair<Tp, Tp> optimize_convex(Fn&& f, Tp xl, Tp xu, Tp err, bool maximize = true) { // Returns {argmin f(x), min f(x)}. Tp const phi = (1 + std::sqrt(static_cast<Tp>(5))) / 2; int const iter = (std::log(xu-xl) - std::log(err)) / std::log(phi) + 1; Tp xml = (phi * xl + xu) / (1 + phi); Tp xmu = (xl + phi * xu) / (1 + phi); Tp yml = f(xml); Tp ymu = f(xmu); for (int i = 0; i < iter; ++i) { if (!maximize ^ (yml > ymu)) { xu = xmu; xmu = xml; ymu = yml; xml = (phi * xl + xu) / (1 + phi); yml = f(xml); } else { xl = xml; xml = xmu; yml = ymu; xmu = (xl + phi * xu) / (1 + phi); ymu = f(xmu); } } return std::make_pair(xml, yml); } #endif /* !defined(H_ternary_search) */ #include <cstdio> #include <cmath> int main() { long double xa, ya, xb, yb; scanf("%Lf %Lf %Lf %Lf", &xa, &ya, &xb, &yb); auto f = [&](auto y) { return std::hypot(xa, y-ya) + std::hypot(xb, yb-y); }; long double y = optimize_convex(f, 0.0L, 1e3L, 1e-6L, false).first; printf("%.20Lf\n", y); }